Interface IncludedNestedStack

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
IncludedNestedStack.Jsii$Proxy

@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)", date="2023-11-02T10:21:25.018Z") @Stability(Stable) public interface IncludedNestedStack extends software.amazon.jsii.JsiiSerializable
The type returned from CfnInclude.getNestedStack. Contains both the NestedStack object and CfnInclude representations of the child stack.

Example:

 CfnInclude parentTemplate;
 IncludedNestedStack includedChildStack = parentTemplate.getNestedStack("ChildStack");
 NestedStack childStack = includedChildStack.getStack();
 CfnInclude childTemplate = includedChildStack.getIncludedTemplate();
 
  • Method Details