Class: Aws::CloudFormation::Types::ExecuteChangeSetInput

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 ExecuteChangeSetInput data as a hash:

{
  change_set_name: "ChangeSetNameOrId", # required
  stack_name: "StackNameOrId",
  client_request_token: "ClientRequestToken",
}

The input for the ExecuteChangeSet action.

Instance Attribute Summary collapse

Instance Attribute Details

#change_set_nameString

The name or ARN of the change set that you want use to update the specified stack.

Returns:

  • (String)


2446
2447
2448
2449
2450
2451
# File 'lib/aws-sdk-cloudformation/types.rb', line 2446

class ExecuteChangeSetInput < Struct.new(
  :change_set_name,
  :stack_name,
  :client_request_token)
  include Aws::Structure
end

#client_request_tokenString

A unique identifier for this ‘ExecuteChangeSet` request. Specify this token if you plan to retry requests so that AWS CloudFormation knows that you’re not attempting to execute a change set to update a stack with the same name. You might retry ‘ExecuteChangeSet` requests to ensure that AWS CloudFormation successfully received them.

Returns:

  • (String)


2446
2447
2448
2449
2450
2451
# File 'lib/aws-sdk-cloudformation/types.rb', line 2446

class ExecuteChangeSetInput < Struct.new(
  :change_set_name,
  :stack_name,
  :client_request_token)
  include Aws::Structure
end

#stack_nameString

If you specified the name of a change set, specify the stack name or ID (ARN) that is associated with the change set you want to execute.

Returns:

  • (String)


2446
2447
2448
2449
2450
2451
# File 'lib/aws-sdk-cloudformation/types.rb', line 2446

class ExecuteChangeSetInput < Struct.new(
  :change_set_name,
  :stack_name,
  :client_request_token)
  include Aws::Structure
end