File size: 964 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 | """
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 InterfaceConfiguration(CfnLintJsonSchema):
"""Check if Metadata Interface Configuration are configured correctly"""
id = "E4001"
shortdesc = "Metadata Interface have appropriate properties"
description = "Metadata Interface properties are properly configured"
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/AWS::CloudFormation::Interface"],
schema_details=SchemaDetails(
cfnlint.data.schemas.other.metadata, "interface.json"
),
all_matches=True,
)
|