Class: Aws::SWF::Types::RespondActivityTaskFailedInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RespondActivityTaskFailedInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass RespondActivityTaskFailedInput data as a hash:
{
task_token: "TaskToken", # required
reason: "FailureReason",
details: "Data",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ String
Detailed information about the failure.
-
#reason ⇒ String
Description of the error that may assist in diagnostics.
-
#task_token ⇒ String
The ‘taskToken` of the ActivityTask.
Instance Attribute Details
#details ⇒ String
Detailed information about the failure.
4688 4689 4690 4691 4692 4693 4694 |
# File 'lib/aws-sdk-swf/types.rb', line 4688 class RespondActivityTaskFailedInput < Struct.new( :task_token, :reason, :details) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
Description of the error that may assist in diagnostics.
4688 4689 4690 4691 4692 4693 4694 |
# File 'lib/aws-sdk-swf/types.rb', line 4688 class RespondActivityTaskFailedInput < Struct.new( :task_token, :reason, :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.
4688 4689 4690 4691 4692 4693 4694 |
# File 'lib/aws-sdk-swf/types.rb', line 4688 class RespondActivityTaskFailedInput < Struct.new( :task_token, :reason, :details) SENSITIVE = [] include Aws::Structure end |