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
Note:
When making an API call, you may pass ListStacksInput data as a hash:
{
next_token: "NextToken",
stack_status_filter: ["CREATE_IN_PROGRESS"], # accepts CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, ROLLBACK_IN_PROGRESS, ROLLBACK_FAILED, ROLLBACK_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE, UPDATE_IN_PROGRESS, UPDATE_COMPLETE_CLEANUP_IN_PROGRESS, UPDATE_COMPLETE, UPDATE_ROLLBACK_IN_PROGRESS, UPDATE_ROLLBACK_FAILED, UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS, UPDATE_ROLLBACK_COMPLETE, REVIEW_IN_PROGRESS, IMPORT_IN_PROGRESS, IMPORT_COMPLETE, IMPORT_ROLLBACK_IN_PROGRESS, IMPORT_ROLLBACK_FAILED, IMPORT_ROLLBACK_COMPLETE
}
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.
3963 3964 3965 3966 3967 3968 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3963 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.
3963 3964 3965 3966 3967 3968 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3963 class ListStacksInput < Struct.new( :next_token, :stack_status_filter) SENSITIVE = [] include Aws::Structure end |