Class: Aws::SWF::Types::RespondDecisionTaskCompletedInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RespondDecisionTaskCompletedInput
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Input data for a TaskCompleted response to a decision task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#decisions ⇒ Array<Types::Decision>
The list of decisions (possibly empty) made by the decider while processing this decision task.
-
#execution_context ⇒ String
User defined context to add to workflow execution.
-
#task_list ⇒ Types::TaskList
The task list to use for the future decision tasks of this workflow execution.
-
#task_list_schedule_to_start_timeout ⇒ String
Specifies a timeout (in seconds) for the task list override.
-
#task_token ⇒ String
The
taskToken
from the DecisionTask.
Instance Attribute Details
#decisions ⇒ Array<Types::Decision>
The list of decisions (possibly empty) made by the decider while processing this decision task. See the docs for the Decision structure for details.
4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4222 class RespondDecisionTaskCompletedInput < Struct.new( :task_token, :decisions, :execution_context, :task_list, :task_list_schedule_to_start_timeout) SENSITIVE = [] include Aws::Structure end |
#execution_context ⇒ String
User defined context to add to workflow execution.
4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4222 class RespondDecisionTaskCompletedInput < Struct.new( :task_token, :decisions, :execution_context, :task_list, :task_list_schedule_to_start_timeout) SENSITIVE = [] include Aws::Structure end |
#task_list ⇒ Types::TaskList
The task list to use for the future decision tasks of this workflow execution. This list overrides the original task list you specified while starting the workflow execution.
4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4222 class RespondDecisionTaskCompletedInput < Struct.new( :task_token, :decisions, :execution_context, :task_list, :task_list_schedule_to_start_timeout) SENSITIVE = [] include Aws::Structure end |
#task_list_schedule_to_start_timeout ⇒ String
Specifies a timeout (in seconds) for the task list override. When this parameter is missing, the task list override is permanent. This parameter makes it possible to temporarily override the task list. If a decision task scheduled on the override task list is not started within the timeout, the decision task will time out. Amazon SWF will revert the override and schedule a new decision task to the original task list.
If a decision task scheduled on the override task list is started within the timeout, but not completed within the start-to-close timeout, Amazon SWF will also revert the override and schedule a new decision task to the original task list.
4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4222 class RespondDecisionTaskCompletedInput < Struct.new( :task_token, :decisions, :execution_context, :task_list, :task_list_schedule_to_start_timeout) SENSITIVE = [] include Aws::Structure end |
#task_token ⇒ String
The taskToken
from the DecisionTask.
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.
4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4222 class RespondDecisionTaskCompletedInput < Struct.new( :task_token, :decisions, :execution_context, :task_list, :task_list_schedule_to_start_timeout) SENSITIVE = [] include Aws::Structure end |