Show / Hide Table of Contents

Interface IIncludedNestedStack

The type returned from {@link CfnInclude.getNestedStack}. Contains both the NestedStack object and CfnInclude representations of the child stack.

Namespace: Amazon.CDK.CloudFormation.Include
Assembly: Amazon.CDK.CloudFormation.Include.dll
Syntax (csharp)
public interface IIncludedNestedStack
Syntax (vb)
Public Interface IIncludedNestedStack
Remarks

ExampleMetadata: infused

Examples
CfnInclude parentTemplate;


var includedChildStack = parentTemplate.GetNestedStack("ChildStack");
var childStack = includedChildStack.Stack;
var childTemplate = includedChildStack.IncludedTemplate;

Synopsis

Properties

IncludedTemplate

The CfnInclude that represents the template, which can be used to access Resources and other template elements.

Stack

The NestedStack object which represents the scope of the template.

Properties

IncludedTemplate

The CfnInclude that represents the template, which can be used to access Resources and other template elements.

CfnInclude IncludedTemplate { get; }
Property Value

CfnInclude

Stack

The NestedStack object which represents the scope of the template.

NestedStack Stack { get; }
Property Value

NestedStack

Back to top Generated by DocFX