Interface CountPendingDecisionTasksRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CountPendingDecisionTasksRequest.Builder,CountPendingDecisionTasksRequest>,SdkBuilder<CountPendingDecisionTasksRequest.Builder,CountPendingDecisionTasksRequest>,SdkPojo,SdkRequest.Builder,SwfRequest.Builder
- Enclosing class:
- CountPendingDecisionTasksRequest
@Mutable @NotThreadSafe public static interface CountPendingDecisionTasksRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<CountPendingDecisionTasksRequest.Builder,CountPendingDecisionTasksRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CountPendingDecisionTasksRequest.Builderdomain(String domain)The name of the domain that contains the task list.CountPendingDecisionTasksRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CountPendingDecisionTasksRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default CountPendingDecisionTasksRequest.BuildertaskList(Consumer<TaskList.Builder> taskList)The name of the task list.CountPendingDecisionTasksRequest.BuildertaskList(TaskList taskList)The name of the task list.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.swf.model.SwfRequest.Builder
build
-
-
-
-
Method Detail
-
domain
CountPendingDecisionTasksRequest.Builder domain(String domain)
The name of the domain that contains the task list.
- Parameters:
domain- The name of the domain that contains the task list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskList
CountPendingDecisionTasksRequest.Builder taskList(TaskList taskList)
The name of the task list.
- Parameters:
taskList- The name of the task list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taskList
default CountPendingDecisionTasksRequest.Builder taskList(Consumer<TaskList.Builder> taskList)
The name of the task list.
This is a convenience method that creates an instance of theTaskList.Builderavoiding the need to create one manually viaTaskList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totaskList(TaskList).- Parameters:
taskList- a consumer that will call methods onTaskList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
taskList(TaskList)
-
overrideConfiguration
CountPendingDecisionTasksRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CountPendingDecisionTasksRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-