Method: Aws::SWF::Types::StartWorkflowExecutionInput#task_priority
- Defined in:
- lib/aws-sdk-swf/types.rb
#task_priority ⇒ String
The task priority to use for this workflow execution. This overrides any default priority that was assigned when the workflow type was registered. If not set, then the default task priority for the workflow type is used. Valid values are integers that range from Java’s ‘Integer.MIN_VALUE` (-2147483648) to `Integer.MAX_VALUE` (2147483647). Higher numbers indicate higher priority.
For more information about setting task priority, see [Setting Task Priority] in the *Amazon SWF Developer Guide*.
[1]: docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html
6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 |
# File 'lib/aws-sdk-swf/types.rb', line 6085 class StartWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :workflow_type, :task_list, :task_priority, :input, :execution_start_to_close_timeout, :tag_list, :task_start_to_close_timeout, :child_policy, :lambda_role) SENSITIVE = [] include Aws::Structure end |