interface TemplateParsingOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.Assertions.TemplateParsingOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/assertions#TemplateParsingOptions |
![]() | software.amazon.awscdk.assertions.TemplateParsingOptions |
![]() | aws_cdk.assertions.TemplateParsingOptions |
![]() | aws-cdk-lib » assertions » TemplateParsingOptions |
Options to configure template parsing behavior, such as disregarding circular dependencies.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { assertions } from 'aws-cdk-lib';
const templateParsingOptions: assertions.TemplateParsingOptions = {
skipCyclicalDependenciesCheck: false,
};
Properties
Name | Type | Description |
---|---|---|
skip | boolean | If set to true, will skip checking for cyclical / circular dependencies. |
skipCyclicalDependenciesCheck?
Type:
boolean
(optional, default: false)
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.