Interface UpdateUserRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateUserRequest.Builder,
,UpdateUserRequest> IdentitystoreRequest.Builder
,SdkBuilder<UpdateUserRequest.Builder,
,UpdateUserRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateUserRequest
public static interface UpdateUserRequest.Builder
extends IdentitystoreRequest.Builder, SdkPojo, CopyableBuilder<UpdateUserRequest.Builder,UpdateUserRequest>
-
Method Summary
Modifier and TypeMethodDescriptionidentityStoreId
(String identityStoreId) The globally unique identifier for the identity store.operations
(Collection<AttributeOperation> operations) A list ofAttributeOperation
objects to apply to the requested user.operations
(Consumer<AttributeOperation.Builder>... operations) A list ofAttributeOperation
objects to apply to the requested user.operations
(AttributeOperation... operations) A list ofAttributeOperation
objects to apply to the requested user.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.The identifier for a user in the identity store.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.services.identitystore.model.IdentitystoreRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
identityStoreId
The globally unique identifier for the identity store.
- Parameters:
identityStoreId
- The globally unique identifier for the identity store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
The identifier for a user in the identity store.
- Parameters:
userId
- The identifier for a user in the identity store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
A list of
AttributeOperation
objects to apply to the requested user. These operations might add, replace, or remove an attribute.- Parameters:
operations
- A list ofAttributeOperation
objects to apply to the requested user. These operations might add, replace, or remove an attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
A list of
AttributeOperation
objects to apply to the requested user. These operations might add, replace, or remove an attribute.- Parameters:
operations
- A list ofAttributeOperation
objects to apply to the requested user. These operations might add, replace, or remove an attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
A list of
This is a convenience method that creates an instance of theAttributeOperation
objects to apply to the requested user. These operations might add, replace, or remove an attribute.AttributeOperation.Builder
avoiding the need to create one manually viaAttributeOperation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooperations(List<AttributeOperation>)
.- Parameters:
operations
- a consumer that will call methods onAttributeOperation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateUserRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-