Interface CountPendingActivityTasksRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CountPendingActivityTasksRequest.Builder,CountPendingActivityTasksRequest>
,SdkBuilder<CountPendingActivityTasksRequest.Builder,CountPendingActivityTasksRequest>
,SdkPojo
,SdkRequest.Builder
,SwfRequest.Builder
- Enclosing class:
- CountPendingActivityTasksRequest
public static interface CountPendingActivityTasksRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<CountPendingActivityTasksRequest.Builder,CountPendingActivityTasksRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CountPendingActivityTasksRequest.Builder
domain(String domain)
The name of the domain that contains the task list.CountPendingActivityTasksRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CountPendingActivityTasksRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
default CountPendingActivityTasksRequest.Builder
taskList(Consumer<TaskList.Builder> taskList)
The name of the task list.CountPendingActivityTasksRequest.Builder
taskList(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
CountPendingActivityTasksRequest.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
CountPendingActivityTasksRequest.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 CountPendingActivityTasksRequest.Builder taskList(Consumer<TaskList.Builder> taskList)
The name of the task list.
This is a convenience method that creates an instance of theTaskList.Builder
avoiding the need to create one manually viaTaskList.builder()
.When the
Consumer
completes,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
CountPendingActivityTasksRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CountPendingActivityTasksRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-