File size: 965 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 | """
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
import cfnlint.data.schemas.other.metadata
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
class CfnLint(CfnLintJsonSchema):
"""Check if Metadata Interface Configuration are configured correctly"""
id = "W4005"
shortdesc = "Validate cfnlint configuration in the Metadata"
description = (
"Metadata cfn-lint configuration has many values and we want to validate that"
)
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-interface.html"
tags = ["metadata"]
def __init__(self) -> None:
super().__init__(
keywords=["Metadata/cfn-lint"],
schema_details=SchemaDetails(
cfnlint.data.schemas.other.metadata, "cfn_lint.json"
),
all_matches=True,
)
|