Class: Aws::SWF::Types::RecordActivityTaskHeartbeatInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RecordActivityTaskHeartbeatInput
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ String
If specified, contains details about the progress of the task.
-
#task_token ⇒ String
The
taskTokenof the ActivityTask.
Instance Attribute Details
#details ⇒ String
If specified, contains details about the progress of the task.
3477 3478 3479 3480 3481 3482 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3477 class RecordActivityTaskHeartbeatInput < Struct.new( :task_token, :details) SENSITIVE = [] include Aws::Structure end |
#task_token ⇒ String
The taskToken of the ActivityTask.
taskToken is generated by the service and should be treated as an
opaque value. If the task is passed to another process, its
taskToken must also be passed. This enables it to provide its
progress and respond with results.
3477 3478 3479 3480 3481 3482 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3477 class RecordActivityTaskHeartbeatInput < Struct.new( :task_token, :details) SENSITIVE = [] include Aws::Structure end |