Interface PollForDecisionTaskRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PollForDecisionTaskRequest.Builder,PollForDecisionTaskRequest>
,SdkBuilder<PollForDecisionTaskRequest.Builder,PollForDecisionTaskRequest>
,SdkPojo
,SdkRequest.Builder
,SwfRequest.Builder
- Enclosing class:
- PollForDecisionTaskRequest
public static interface PollForDecisionTaskRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<PollForDecisionTaskRequest.Builder,PollForDecisionTaskRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PollForDecisionTaskRequest.Builder
domain(String domain)
The name of the domain containing the task lists to poll.PollForDecisionTaskRequest.Builder
identity(String identity)
Identity of the decider making the request, which is recorded in the DecisionTaskStarted event in the workflow history.PollForDecisionTaskRequest.Builder
maximumPageSize(Integer maximumPageSize)
The maximum number of results that are returned per call.PollForDecisionTaskRequest.Builder
nextPageToken(String nextPageToken)
IfNextPageToken
is returned there are more results available.PollForDecisionTaskRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
PollForDecisionTaskRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
PollForDecisionTaskRequest.Builder
reverseOrder(Boolean reverseOrder)
When set totrue
, returns the events in reverse order.PollForDecisionTaskRequest.Builder
startAtPreviousStartedEvent(Boolean startAtPreviousStartedEvent)
When set totrue
, returns the events witheventTimestamp
greater than or equal toeventTimestamp
of the most recentDecisionTaskStarted
event.default PollForDecisionTaskRequest.Builder
taskList(Consumer<TaskList.Builder> taskList)
Specifies the task list to poll for decision tasks.PollForDecisionTaskRequest.Builder
taskList(TaskList taskList)
Specifies the task list to poll for decision tasks.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.swf.model.SwfRequest.Builder
build
-
-
-
-
Method Detail
-
domain
PollForDecisionTaskRequest.Builder domain(String domain)
The name of the domain containing the task lists to poll.
- Parameters:
domain
- The name of the domain containing the task lists to poll.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskList
PollForDecisionTaskRequest.Builder taskList(TaskList taskList)
Specifies the task list to poll for decision tasks.
The specified string must not contain a
:
(colon),/
(slash),|
(vertical bar), or any control characters (
-
-