Class: Aws::CloudFormation::Types::ListStacksInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#next_tokenString

A string that identifies the next page of stacks that you want to retrieve.

Returns:

  • (String)


5523
5524
5525
5526
5527
5528
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5523

class ListStacksInput < Struct.new(
  :next_token,
  :stack_status_filter)
  SENSITIVE = []
  include Aws::Structure
end

#stack_status_filterArray<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.

Returns:

  • (Array<String>)


5523
5524
5525
5526
5527
5528
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5523

class ListStacksInput < Struct.new(
  :next_token,
  :stack_status_filter)
  SENSITIVE = []
  include Aws::Structure
end