Class: Aws::SWF::Types::RespondActivityTaskCompletedInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RespondActivityTaskCompletedInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass RespondActivityTaskCompletedInput data as a hash:
{
task_token: "TaskToken", # required
result: "Data",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#result ⇒ String
The result of the activity task.
-
#task_token ⇒ String
The ‘taskToken` of the ActivityTask.
Instance Attribute Details
#result ⇒ String
The result of the activity task. It is a free form string that is implementation specific.
4655 4656 4657 4658 4659 4660 |
# File 'lib/aws-sdk-swf/types.rb', line 4655 class RespondActivityTaskCompletedInput < Struct.new( :task_token, :result) 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.
4655 4656 4657 4658 4659 4660 |
# File 'lib/aws-sdk-swf/types.rb', line 4655 class RespondActivityTaskCompletedInput < Struct.new( :task_token, :result) SENSITIVE = [] include Aws::Structure end |