Class: Aws::SWF::Types::RespondDecisionTaskCompletedInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#decisionsArray<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.

Returns:



4192
4193
4194
4195
4196
4197
4198
4199
4200
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4192

class RespondDecisionTaskCompletedInput < Struct.new(
  :task_token,
  :decisions,
  :execution_context,
  :task_list,
  :task_list_schedule_to_start_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#execution_contextString

User defined context to add to workflow execution.

Returns:

  • (String)


4192
4193
4194
4195
4196
4197
4198
4199
4200
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4192

class RespondDecisionTaskCompletedInput < Struct.new(
  :task_token,
  :decisions,
  :execution_context,
  :task_list,
  :task_list_schedule_to_start_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#task_listTypes::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.

Returns:



4192
4193
4194
4195
4196
4197
4198
4199
4200
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4192

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_timeoutString

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.

Returns:

  • (String)


4192
4193
4194
4195
4196
4197
4198
4199
4200
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4192

class RespondDecisionTaskCompletedInput < Struct.new(
  :task_token,
  :decisions,
  :execution_context,
  :task_list,
  :task_list_schedule_to_start_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#task_tokenString

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.

Returns:

  • (String)


4192
4193
4194
4195
4196
4197
4198
4199
4200
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 4192

class RespondDecisionTaskCompletedInput < Struct.new(
  :task_token,
  :decisions,
  :execution_context,
  :task_list,
  :task_list_schedule_to_start_timeout)
  SENSITIVE = []
  include Aws::Structure
end