interface ChangeSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.ChangeSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#ChangeSetReference |
Java | software.amazon.awscdk.interfaces.cloudformation.ChangeSetReference |
Python | aws_cdk.interfaces.aws_cloudformation.ChangeSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » ChangeSetReference |
A reference to a ChangeSet 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_cloudformation } from 'aws-cdk-lib/interfaces';
const changeSetReference: interfaces_cloudformation.ChangeSetReference = {
changeSetId: 'changeSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| change | string | The ChangeSetId of the ChangeSet resource. |
changeSetId
Type:
string
The ChangeSetId of the ChangeSet resource.

.NET
Go
Java
Python
TypeScript