CopyableBuilder<DecisionTaskScheduledEventAttributes.Builder,DecisionTaskScheduledEventAttributes>
, SdkBuilder<DecisionTaskScheduledEventAttributes.Builder,DecisionTaskScheduledEventAttributes>
public static interface DecisionTaskScheduledEventAttributes.Builder extends CopyableBuilder<DecisionTaskScheduledEventAttributes.Builder,DecisionTaskScheduledEventAttributes>
Modifier and Type | Method | Description |
---|---|---|
DecisionTaskScheduledEventAttributes.Builder |
startToCloseTimeout(String startToCloseTimeout) |
The maximum duration for this decision task.
|
DecisionTaskScheduledEventAttributes.Builder |
taskList(TaskList taskList) |
The name of the task list in which the decision task was scheduled.
|
DecisionTaskScheduledEventAttributes.Builder |
taskPriority(String taskPriority) |
Optional. A task priority that, if set, specifies the priority for this decision task.
|
copy
apply, build
DecisionTaskScheduledEventAttributes.Builder taskList(TaskList taskList)
The name of the task list in which the decision task was scheduled.
taskList
- The name of the task list in which the decision task was scheduled.DecisionTaskScheduledEventAttributes.Builder taskPriority(String taskPriority)
Optional. A task priority that, if set, specifies the priority for this decision task. 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 Simple Workflow Developer Guide.
taskPriority
- Optional. A task priority that, if set, specifies the priority for this decision task. 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 Simple Workflow Developer Guide
DecisionTaskScheduledEventAttributes.Builder startToCloseTimeout(String startToCloseTimeout)
The maximum duration for this decision task. The task is considered timed out if it does not completed within this duration.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
startToCloseTimeout
- The maximum duration for this decision task. The task is considered timed out if it does not completed
within this duration.
The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.