Class: Aws::CloudFormation::Types::ListChangeSetsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListChangeSetsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for the ListChangeSets action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the output exceeds 1 MB, a string that identifies the next page of change sets.
-
#summaries ⇒ Array<Types::ChangeSetSummary>
A list of `ChangeSetSummary` structures that provides the ID and status of each change set for the specified stack.
Instance Attribute Details
#next_token ⇒ String
If the output exceeds 1 MB, a string that identifies the next page of change sets. If there is no additional page, this value is `null`.
4059 4060 4061 4062 4063 4064 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4059 class ListChangeSetsOutput < Struct.new( :summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#summaries ⇒ Array<Types::ChangeSetSummary>
A list of `ChangeSetSummary` structures that provides the ID and status of each change set for the specified stack.
4059 4060 4061 4062 4063 4064 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4059 class ListChangeSetsOutput < Struct.new( :summaries, :next_token) SENSITIVE = [] include Aws::Structure end |