Class: Aws::CloudFormation::Types::ListChangeSetsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

Note:

When making an API call, you may pass ListChangeSetsInput data as a hash:

{
  stack_name: "StackNameOrId", # required
  next_token: "NextToken",
}

The input for the ListChangeSets action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A string (provided by the ListChangeSets response output) that identifies the next page of change sets that you want to retrieve.

Returns:

  • (String)


3168
3169
3170
3171
3172
# File 'lib/aws-sdk-cloudformation/types.rb', line 3168

class ListChangeSetsInput < Struct.new(
  :stack_name,
  :next_token)
  include Aws::Structure
end

#stack_nameString

The name or the Amazon Resource Name (ARN) of the stack for which you want to list change sets.

Returns:

  • (String)


3168
3169
3170
3171
3172
# File 'lib/aws-sdk-cloudformation/types.rb', line 3168

class ListChangeSetsInput < Struct.new(
  :stack_name,
  :next_token)
  include Aws::Structure
end