interface StackSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.StackSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#StackSetReference |
Java | software.amazon.awscdk.interfaces.cloudformation.StackSetReference |
Python | aws_cdk.interfaces.aws_cloudformation.StackSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » StackSetReference |
A reference to a StackSet resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as interfaces_aws_cloudformation } from 'aws-cdk-lib/interfaces';
const stackSetReference: interfaces_aws_cloudformation.StackSetReference = {
stackSetId: 'stackSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| stack | string | The StackSetId of the StackSet resource. |
stackSetId
Type:
string
The StackSetId of the StackSet resource.

.NET
Go
Java
Python
TypeScript