ChangeSetReference

class aws_cdk.interfaces.aws_cloudformation.ChangeSetReference(*, change_set_id)

Bases: object

A reference to a ChangeSet resource.

Parameters:

change_set_id (str) – The ChangeSetId of the ChangeSet resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_cloudformation as interfaces_cloudformation

change_set_reference = interfaces_cloudformation.ChangeSetReference(
    change_set_id="changeSetId"
)

Attributes

change_set_id

The ChangeSetId of the ChangeSet resource.