404

[ Avaa Bypassed ]




Upload:

Command:

botdev@13.59.93.176: ~ $
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from cfnlint.helpers import LIMITS
from cfnlint.rules import CloudFormationLintRule, RuleMatch


class LimitAttributes(CloudFormationLintRule):
    """Check maximum Mapping attribute limit"""

    id = "I7012"
    shortdesc = "Mapping attribute limit"
    description = "Check if the amount of Mapping attributes in the template is approaching the upper limit"
    source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html"
    tags = ["mappings", "limits"]

    def match(self, cfn):
        matches = []
        for mapping_name, mapping in cfn.template.get("Mappings", {}).items():
            for mapping_attribute_name, mapping_attribute in mapping.items():
                path = ["Mappings", mapping_name, mapping_attribute_name]
                if (
                    LIMITS["threshold"] * LIMITS["Mappings"]["attributes"]
                    < len(mapping_attribute)
                    <= LIMITS["Mappings"]["attributes"]
                ):
                    message = "The amount of mapping attributes ({0}) is approaching the limit ({1})"
                    matches.append(
                        RuleMatch(
                            path,
                            message.format(
                                len(mapping_attribute), LIMITS["Mappings"]["attributes"]
                            ),
                        )
                    )
        return matches

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
ApproachingLimitAttributes.py File 1.51 KB 0644
ApproachingLimitName.py File 697 B 0644
ApproachingLimitNumber.py File 685 B 0644
Configuration.py File 2.24 KB 0644
KeyName.py File 2.58 KB 0644
LimitAttributes.py File 1.44 KB 0644
LimitName.py File 699 B 0644
LimitNumber.py File 687 B 0644
Name.py File 644 B 0644
Used.py File 1.72 KB 0644
__init__.py File 106 B 0644