Class: Aws::CloudFormation::Types::CancelUpdateStackInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::CancelUpdateStackInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The input for the CancelUpdateStack action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique identifier for this `CancelUpdateStack` request.
-
#stack_name ⇒ String
The name or the unique stack ID that's associated with the stack.
Instance Attribute Details
#client_request_token ⇒ String
A unique identifier for this `CancelUpdateStack` request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to cancel an update on a stack with the same name. You might retry `CancelUpdateStack` requests to ensure that CloudFormation successfully received them.
349 350 351 352 353 354 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 349 class CancelUpdateStackInput < Struct.new( :stack_name, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The name or the unique stack ID that's associated with the stack.
349 350 351 352 353 354 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 349 class CancelUpdateStackInput < Struct.new( :stack_name, :client_request_token) SENSITIVE = [] include Aws::Structure end |