Class: Aws::States::Types::RedriveExecutionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::RedriveExecutionInput
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#execution_arn ⇒ String
The Amazon Resource Name (ARN) of the execution to be redriven.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The API will return idempotent responses for the last 10 client tokens used to successfully redrive the execution. These client tokens are valid for up to 15 minutes after they are first used.
A suitable default value is auto-generated. You should normally not need to pass this option.
3246 3247 3248 3249 3250 3251 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3246 class RedriveExecutionInput < Struct.new( :execution_arn, :client_token) SENSITIVE = [] include Aws::Structure end |
#execution_arn ⇒ String
The Amazon Resource Name (ARN) of the execution to be redriven.
3246 3247 3248 3249 3250 3251 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3246 class RedriveExecutionInput < Struct.new( :execution_arn, :client_token) SENSITIVE = [] include Aws::Structure end |