forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToJsonString.py
More file actions
45 lines (36 loc) · 1.44 KB
/
ToJsonString.py
File metadata and controls
45 lines (36 loc) · 1.44 KB
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
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
from __future__ import annotations
from typing import Any
from cfnlint.helpers import TRANSFORM_LANGUAGE_EXTENSION
from cfnlint.jsonschema import ValidationError, ValidationResult, Validator
from cfnlint.rules.functions._BaseFn import BaseFn
class ToJsonString(BaseFn):
"""Check if ToJsonString values are correct"""
id = "E1031"
shortdesc = "ToJsonString validation of parameters"
description = "Making sure Fn::ToJsonString is configured correctly"
source_url = "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html"
tags = ["functions", "toJsonString"]
def __init__(self) -> None:
super().__init__(
"Fn::ToJsonString",
("string",),
resolved_rule="W1040",
)
def fn_tojsonstring(
self, validator: Validator, s: Any, instance: Any, schema: Any
) -> ValidationResult:
if not validator.context.transforms.has_language_extensions_transform():
yield ValidationError(
f"{self.fn.name} is not supported without "
f"{TRANSFORM_LANGUAGE_EXTENSION!r} transform",
validator=self.fn.py,
rule=self,
)
return
for err in super().validate(validator, s, instance, schema):
err.rule = self
yield err