Class: Aws::SWF::Types::RespondActivityTaskCanceledInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RespondActivityTaskCanceledInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ String
Information about the cancellation.
-
#task_token ⇒ String
The ‘taskToken` of the ActivityTask.
Instance Attribute Details
#details ⇒ String
Information about the cancellation.
4127 4128 4129 4130 4131 4132 |
# File 'lib/aws-sdk-swf/types.rb', line 4127 class RespondActivityTaskCanceledInput < 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.
4127 4128 4129 4130 4131 4132 |
# File 'lib/aws-sdk-swf/types.rb', line 4127 class RespondActivityTaskCanceledInput < Struct.new( :task_token, :details) SENSITIVE = [] include Aws::Structure end |