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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


3520
3521
3522
3523
3524
3525
# File 'lib/aws-sdk-states/types.rb', line 3520

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)


3520
3521
3522
3523
3524
3525
# File 'lib/aws-sdk-states/types.rb', line 3520

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