forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
And.py
44 lines (36 loc) · 1.28 KB
/
And.py
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
42
43
44
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
from typing import Any
from cfnlint.jsonschema import Validator
from cfnlint.rules.functions._BaseFn import BaseFn
class And(BaseFn):
"""Check And Condition Function Logic"""
id = "E8004"
shortdesc = "Check Fn::And structure for validity"
description = "Check Fn::And is a list of two elements"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html#intrinsic-function-reference-conditions-and"
tags = ["functions", "and"]
def __init__(self) -> None:
super().__init__("Fn::And", ("boolean",))
self.fn_and = self.validate
def schema(self, validator: Validator, instance: Any) -> dict[str, Any]:
return {
"type": "array",
"minItems": 2,
"maxItems": 10,
"fn_items": {
"functions": [
"Condition",
"Fn::Equals",
"Fn::Not",
"Fn::And",
"Fn::Or",
],
"schema": {
"type": ["boolean"],
},
},
}