Class: Aws::States::Types::SendTaskHeartbeatInput

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

Overview

Note:

When making an API call, you may pass SendTaskHeartbeatInput data as a hash:

{
  task_token: "TaskToken", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#task_tokenString

The token that represents this task. Task tokens are generated by Step Functions when tasks are assigned to a worker, or in the

context object][1

when a workflow enters a task state. See

GetActivityTaskOutput$taskToken.

[1]: docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html

Returns:

  • (String)


2044
2045
2046
2047
2048
# File 'lib/aws-sdk-states/types.rb', line 2044

class SendTaskHeartbeatInput < Struct.new(
  :task_token)
  SENSITIVE = []
  include Aws::Structure
end