Interface UpdateUserProficienciesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ConnectRequest.Builder,CopyableBuilder<UpdateUserProficienciesRequest.Builder,UpdateUserProficienciesRequest>,SdkBuilder<UpdateUserProficienciesRequest.Builder,UpdateUserProficienciesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateUserProficienciesRequest
public static interface UpdateUserProficienciesRequest.Builder extends ConnectRequest.Builder, SdkPojo, CopyableBuilder<UpdateUserProficienciesRequest.Builder,UpdateUserProficienciesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateUserProficienciesRequest.BuilderinstanceId(String instanceId)The identifier of the Amazon Connect instance.UpdateUserProficienciesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateUserProficienciesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateUserProficienciesRequest.BuilderuserId(String userId)The identifier of the user account.UpdateUserProficienciesRequest.BuilderuserProficiencies(Collection<UserProficiency> userProficiencies)The proficiencies to be updated for the user.UpdateUserProficienciesRequest.BuilderuserProficiencies(Consumer<UserProficiency.Builder>... userProficiencies)The proficiencies to be updated for the user.UpdateUserProficienciesRequest.BuilderuserProficiencies(UserProficiency... userProficiencies)The proficiencies to be updated for the user.-
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
UpdateUserProficienciesRequest.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.
-
userId
UpdateUserProficienciesRequest.Builder userId(String userId)
The identifier of the user account.
- Parameters:
userId- The identifier of the user account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencies
UpdateUserProficienciesRequest.Builder userProficiencies(Collection<UserProficiency> userProficiencies)
The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.
- Parameters:
userProficiencies- The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencies
UpdateUserProficienciesRequest.Builder userProficiencies(UserProficiency... userProficiencies)
The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.
- Parameters:
userProficiencies- The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProficiencies
UpdateUserProficienciesRequest.Builder userProficiencies(Consumer<UserProficiency.Builder>... userProficiencies)
The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do this using AssociateUserProficiencies API.
This is a convenience method that creates an instance of theUserProficiency.Builderavoiding the need to create one manually viaUserProficiency.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#userProficiencies(List.) - Parameters:
userProficiencies- a consumer that will call methods onUserProficiency.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#userProficiencies(java.util.Collection)
-
overrideConfiguration
UpdateUserProficienciesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateUserProficienciesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-