Class: Aws::CloudFormation::Types::ListStacksOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

The output for ListStacks action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


3639
3640
3641
3642
3643
# File 'lib/aws-sdk-cloudformation/types.rb', line 3639

class ListStacksOutput < Struct.new(
  :stack_summaries,
  :next_token)
  include Aws::Structure
end

#stack_summariesArray<Types::StackSummary>

A list of ‘StackSummary` structures containing information about the specified stacks.

Returns:



3639
3640
3641
3642
3643
# File 'lib/aws-sdk-cloudformation/types.rb', line 3639

class ListStacksOutput < Struct.new(
  :stack_summaries,
  :next_token)
  include Aws::Structure
end