Class: Aws::States::Types::SendTaskHeartbeatInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::SendTaskHeartbeatInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#task_token ⇒ String
The token that represents this task.
Instance Attribute Details
#task_token ⇒ String
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
3355 3356 3357 3358 3359 |
# File 'lib/aws-sdk-states/types.rb', line 3355 class SendTaskHeartbeatInput < Struct.new( :task_token) SENSITIVE = [] include Aws::Structure end |