TemplateParsingOptions

class aws_cdk.assertions.TemplateParsingOptions(*, skip_cyclical_dependencies_check=None)

Bases: object

Options to configure template parsing behavior, such as disregarding circular dependencies.

Parameters:

skip_cyclical_dependencies_check (Optional[bool]) – If set to true, will skip checking for cyclical / circular dependencies. Should be set to false other than for templates that are valid despite containing cycles, such as unprocessed transform stacks. Default: false

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import assertions

template_parsing_options = assertions.TemplateParsingOptions(
    skip_cyclical_dependencies_check=False
)

Attributes

skip_cyclical_dependencies_check

If set to true, will skip checking for cyclical / circular dependencies.

Should be set to false other than for templates that are valid despite containing cycles, such as unprocessed transform stacks.

Default:

false