Interface TemplateParsingOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TemplateParsingOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T13:51:55.222Z")
@Stability(Stable)
public interface TemplateParsingOptions
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.assertions.*;
TemplateParsingOptions templateParsingOptions = TemplateParsingOptions.builder()
.skipCyclicalDependenciesCheck(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTemplateParsingOptionsstatic final classAn implementation forTemplateParsingOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSkipCyclicalDependenciesCheck
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
-
builder
- Returns:
- a
TemplateParsingOptions.BuilderofTemplateParsingOptions
-