forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Not.py
44 lines (36 loc) · 1.27 KB
/
Not.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 Not(BaseFn):
"""Check Not Condition Function Logic"""
id = "E8005"
shortdesc = "Check Fn::Not structure for validity"
description = "Check Fn::Not is a list of one element"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html#intrinsic-function-reference-conditions-not"
tags = ["functions", "not"]
def __init__(self) -> None:
super().__init__("Fn::Not", ("boolean",))
self.fn_not = self.validate
def schema(self, validator: Validator, instance: Any) -> dict[str, Any]:
return {
"type": "array",
"maxItems": 1,
"minItems": 1,
"fn_items": {
"functions": [
"Condition",
"Fn::Equals",
"Fn::Not",
"Fn::And",
"Fn::Or",
],
"schema": {
"type": ["boolean"],
},
},
}