Class: Aws::CloudFormation::Types::ExecuteChangeSetInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ExecuteChangeSetInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The input for the ExecuteChangeSet action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_set_name ⇒ String
The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.
-
#client_request_token ⇒ String
A unique identifier for this `ExecuteChangeSet` request.
-
#disable_rollback ⇒ Boolean
Preserves the state of previously provisioned resources when an operation fails.
-
#stack_name ⇒ String
If you specified the name of a change set, specify the stack name or Amazon Resource Name (ARN) that's associated with the change set you want to execute.
Instance Attribute Details
#change_set_name ⇒ String
The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.
3589 3590 3591 3592 3593 3594 3595 3596 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3589 class ExecuteChangeSetInput < Struct.new( :change_set_name, :stack_name, :client_request_token, :disable_rollback) SENSITIVE = [] include Aws::Structure end |
#client_request_token ⇒ String
A unique identifier for this `ExecuteChangeSet` request. Specify this token if you plan to retry requests so that 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 CloudFormation successfully received them.
3589 3590 3591 3592 3593 3594 3595 3596 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3589 class ExecuteChangeSetInput < Struct.new( :change_set_name, :stack_name, :client_request_token, :disable_rollback) SENSITIVE = [] include Aws::Structure end |
#disable_rollback ⇒ Boolean
Preserves the state of previously provisioned resources when an operation fails.
Default: `True`
3589 3590 3591 3592 3593 3594 3595 3596 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3589 class ExecuteChangeSetInput < Struct.new( :change_set_name, :stack_name, :client_request_token, :disable_rollback) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
If you specified the name of a change set, specify the stack name or Amazon Resource Name (ARN) that's associated with the change set you want to execute.
3589 3590 3591 3592 3593 3594 3595 3596 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3589 class ExecuteChangeSetInput < Struct.new( :change_set_name, :stack_name, :client_request_token, :disable_rollback) SENSITIVE = [] include Aws::Structure end |