Interface UpdateUserRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateUserRequest.Builder,
,UpdateUserRequest> MemoryDbRequest.Builder
,SdkBuilder<UpdateUserRequest.Builder,
,UpdateUserRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateUserRequest
public static interface UpdateUserRequest.Builder
extends MemoryDbRequest.Builder, SdkPojo, CopyableBuilder<UpdateUserRequest.Builder,UpdateUserRequest>
-
Method Summary
Modifier and TypeMethodDescriptionaccessString
(String accessString) Access permissions string used for this user.default UpdateUserRequest.Builder
authenticationMode
(Consumer<AuthenticationMode.Builder> authenticationMode) Denotes the user's authentication properties, such as whether it requires a password to authenticate.authenticationMode
(AuthenticationMode authenticationMode) Denotes the user's authentication properties, such as whether it requires a password to authenticate.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.The name of the userMethods 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.memorydb.model.MemoryDbRequest.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
-
userName
The name of the user
- Parameters:
userName
- The name of the user- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMode
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
- Parameters:
authenticationMode
- Denotes the user's authentication properties, such as whether it requires a password to authenticate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMode
default UpdateUserRequest.Builder authenticationMode(Consumer<AuthenticationMode.Builder> authenticationMode) Denotes the user's authentication properties, such as whether it requires a password to authenticate.
This is a convenience method that creates an instance of theAuthenticationMode.Builder
avoiding the need to create one manually viaAuthenticationMode.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toauthenticationMode(AuthenticationMode)
.- Parameters:
authenticationMode
- a consumer that will call methods onAuthenticationMode.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
accessString
Access permissions string used for this user.
- Parameters:
accessString
- Access permissions string used for this user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
-