File size: 1,405 Bytes
b40c49c | 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 45 46 | """
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from typing import Any
from cfnlint.jsonschema import ValidationResult, Validator
from cfnlint.jsonschema._keywords import maxLength
from cfnlint.rules import CloudFormationLintRule
class LimitDescription(CloudFormationLintRule):
"""Check Template Description Size"""
id = "E1003"
shortdesc = "Validate the max size of a description"
description = (
"Check if the size of the template description is less than the upper limit"
)
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html"
tags = ["description", "limits"]
def __init__(self) -> None:
super().__init__()
self.child_rules = {
"I1003": None,
}
def maxLength(
self, validator: Validator, mL: int, instance: Any, schema: Any
) -> ValidationResult:
if not validator.is_type(instance, "string"):
return
errors = list(maxLength(validator, mL, instance, schema))
if errors:
yield from iter(errors)
return
for child_rule in self.child_rules.values():
if child_rule is not None:
if hasattr(child_rule, "maxLength"):
yield from child_rule.maxLength(validator, mL, instance, schema)
|