Interface UpdateRoutingProfileQueuesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,ConnectRequest.Builder
,CopyableBuilder<UpdateRoutingProfileQueuesRequest.Builder,UpdateRoutingProfileQueuesRequest>
,SdkBuilder<UpdateRoutingProfileQueuesRequest.Builder,UpdateRoutingProfileQueuesRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateRoutingProfileQueuesRequest
public static interface UpdateRoutingProfileQueuesRequest.Builder extends ConnectRequest.Builder, SdkPojo, CopyableBuilder<UpdateRoutingProfileQueuesRequest.Builder,UpdateRoutingProfileQueuesRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
instanceId
UpdateRoutingProfileQueuesRequest.Builder instanceId(String instanceId)
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
- Parameters:
instanceId
- The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
routingProfileId
UpdateRoutingProfileQueuesRequest.Builder routingProfileId(String routingProfileId)
The identifier of the routing profile.
- Parameters:
routingProfileId
- The identifier of the routing profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queueConfigs
UpdateRoutingProfileQueuesRequest.Builder queueConfigs(Collection<RoutingProfileQueueConfig> queueConfigs)
The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.
- Parameters:
queueConfigs
- The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queueConfigs
UpdateRoutingProfileQueuesRequest.Builder queueConfigs(RoutingProfileQueueConfig... queueConfigs)
The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.
- Parameters:
queueConfigs
- The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queueConfigs
UpdateRoutingProfileQueuesRequest.Builder queueConfigs(Consumer<RoutingProfileQueueConfig.Builder>... queueConfigs)
The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.
This is a convenience method that creates an instance of theRoutingProfileQueueConfig.Builder
avoiding the need to create one manually viaRoutingProfileQueueConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#queueConfigs(List
.) - Parameters:
queueConfigs
- a consumer that will call methods onRoutingProfileQueueConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#queueConfigs(java.util.Collection
)
-
overrideConfiguration
UpdateRoutingProfileQueuesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateRoutingProfileQueuesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-