-
Notifications
You must be signed in to change notification settings - Fork 606
/
Copy pathQueueProperties.py
46 lines (39 loc) · 1.55 KB
/
QueueProperties.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
45
46
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from typing import Any
import cfnlint.data.schemas.extensions.aws_sqs_queue
from cfnlint.jsonschema import ValidationResult, Validator
from cfnlint.rules.jsonschema.CfnLintJsonSchema import CfnLintJsonSchema, SchemaDetails
class QueueProperties(CfnLintJsonSchema):
id = "E3501"
shortdesc = "Validate SQS queue properties are valid"
description = (
"Depending on if the queue is FIFO or not the "
"properties and allowed values change. "
"This rule validates properties and values based on the queue type."
)
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html"
tags = ["resources", "sqs"]
def __init__(self) -> None:
super().__init__(
keywords=[
"Resources/AWS::SQS::Queue/Properties",
],
schema_details=SchemaDetails(
module=cfnlint.data.schemas.extensions.aws_sqs_queue,
filename="properties.json",
),
all_matches=True,
)
def validate(
self, validator: Validator, keywords: Any, instance: Any, schema: Any
) -> ValidationResult:
for err in super().validate(validator, keywords, instance, schema):
if err.schema is False:
err.message = (
f"Additional properties are not allowed ({err.path[-1]!r} "
"was unexpected)"
)
yield err