aws.cloudformation.list_change_sets
Example SQL Queries
SELECT * FROMaws.cloudformation.list_change_setsWHERE"stack_name" = 'VALUE';Description
Returns the ID and status of each active change set for a stack. For example, CloudFormation lists change sets that are in the CREATE_IN_PROGRESS or CREATE_PENDING state.
Table Definition
| Column Name | Column Data Type |
|---|---|
| stack_name Required Input Column The name of the stack with which the change set is associated. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| change_set_id The ID of the change set. | VARCHAR |
| change_set_name The name of the change set. | VARCHAR |
| creation_time The start time when the change set was created, in UTC. | TIMESTAMP_S |
| description Descriptive information about the change set. | VARCHAR |
| execution_status If the change set execution status is AVAILABLE, you can execute the change set. If you can't execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated. | VARCHAR |
| import_existing_resources Indicates if the change set imports resources that already exist. | BOOLEAN |
| include_nested_stacks Specifies the current setting of IncludeNestedStacks for the change set. | BOOLEAN |
| parent_change_set_id The parent change set ID. | VARCHAR |
| root_change_set_id The root change set ID. | VARCHAR |
| stack_id The ID of the stack with which the change set is associated. | VARCHAR |
| status The state of the change set, such as CREATE_IN_PROGRESS, CREATE_COMPLETE, or FAILED. | VARCHAR |
| status_reason A description of the change set's status. For example, if your change set is in the FAILED state, CloudFormation shows the error message. | VARCHAR |