Class: Aws::States::Types::RedriveExecutionInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-states/lib/aws-sdk-states/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

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.

Returns:

  • (String)


3338
3339
3340
3341
3342
3343
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3338

class RedriveExecutionInput < Struct.new(
  :execution_arn,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end

#execution_arnString

The Amazon Resource Name (ARN) of the execution to be redriven.

Returns:

  • (String)


3338
3339
3340
3341
3342
3343
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3338

class RedriveExecutionInput < Struct.new(
  :execution_arn,
  :client_token)
  SENSITIVE = []
  include Aws::Structure
end