Class: Aws::CloudFormation::Types::ListStacksOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListStacksOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for ListStacks action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of stacks.
-
#stack_summaries ⇒ Array<Types::StackSummary>
A list of ‘StackSummary` structures containing information about the specified stacks.
Instance Attribute Details
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of stacks. If no additional page exists, this value is null.
5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 5626 class ListStacksOutput < Struct.new( :stack_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#stack_summaries ⇒ Array<Types::StackSummary>
A list of ‘StackSummary` structures containing information about the specified stacks.
5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 5626 class ListStacksOutput < Struct.new( :stack_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |