Class: Aws::CloudFormation::Types::DescribeStacksOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DescribeStacksOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for a DescribeStacks 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.
-
#stacks ⇒ Array<Types::Stack>
A list of stack structures.
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.
3375 3376 3377 3378 3379 3380 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3375 class DescribeStacksOutput < Struct.new( :stacks, :next_token) SENSITIVE = [] include Aws::Structure end |
#stacks ⇒ Array<Types::Stack>
A list of stack structures.
3375 3376 3377 3378 3379 3380 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3375 class DescribeStacksOutput < Struct.new( :stacks, :next_token) SENSITIVE = [] include Aws::Structure end |