Class: Aws::CloudFormation::Types::ListStacksInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListStacksInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
The input for ListStacks action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A string that identifies the next page of stacks that you want to retrieve.
-
#stack_status_filter ⇒ Array<String>
Stack status to use as a filter.
Instance Attribute Details
#next_token ⇒ String
A string that identifies the next page of stacks that you want to retrieve.
5604 5605 5606 5607 5608 5609 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5604 class ListStacksInput < Struct.new( :next_token, :stack_status_filter) SENSITIVE = [] include Aws::Structure end |
#stack_status_filter ⇒ Array<String>
Stack status to use as a filter. Specify one or more stack status
codes to list only stacks with the specified status codes. For a
complete list of stack status codes, see the StackStatus
parameter
of the Stack data type.
5604 5605 5606 5607 5608 5609 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5604 class ListStacksInput < Struct.new( :next_token, :stack_status_filter) SENSITIVE = [] include Aws::Structure end |