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`.
4779 4780 4781 4782 4783 4784 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4779 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.
4779 4780 4781 4782 4783 4784 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4779 class ListChangeSetsOutput < Struct.new( :summaries, :next_token) SENSITIVE = [] include Aws::Structure end |