interface StackSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.StackSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#StackSetReference |
Java | software.amazon.awscdk.services.cloudformation.StackSetReference |
Python | aws_cdk.aws_cloudformation.StackSetReference |
TypeScript | aws-cdk-lib » 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 cloudformation } from 'aws-cdk-lib';
const stackSetReference: 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