forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImportValue.py
More file actions
41 lines (32 loc) · 1.29 KB
/
ImportValue.py
File metadata and controls
41 lines (32 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from typing import Any, Iterator
from cfnlint.jsonschema import ValidationError, Validator
from cfnlint.rules.functions._BaseFn import BaseFn, singular_types
class ImportValue(BaseFn):
"""Check if ImportValue values are correct"""
id = "E1016"
shortdesc = "ImportValue validation of parameters"
description = "Making sure the ImportValue function is properly configured"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html"
tags = ["functions", "importvalue"]
def __init__(self) -> None:
super().__init__(
"Fn::ImportValue",
singular_types,
)
self.child_rules = {
"W6001": None,
}
def fn_importvalue(
self, validator: Validator, s: Any, instance: Any, schema: Any
) -> Iterator[ValidationError]:
errs = list(super().validate(validator, s, instance, schema))
if errs:
yield from iter(errs)
for rule in self.child_rules.values():
if rule is None or not hasattr(rule, "validate"):
continue
yield from rule.validate(validator, s, instance, schema)