Class: Aws::CloudFormation::Types::ListStacksInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListStacksInput
- Includes:
- Structure
- Defined in:
- 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.
4540 4541 4542 4543 4544 4545 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4540 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.
4540 4541 4542 4543 4544 4545 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 4540 class ListStacksInput < Struct.new( :next_token, :stack_status_filter) SENSITIVE = [] include Aws::Structure end |