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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateUserRequest.BuilderaccessString(String accessString)Access permissions string used for this user.default UpdateUserRequest.BuilderauthenticationMode(Consumer<AuthenticationMode.Builder> authenticationMode)Denotes the user's authentication properties, such as whether it requires a password to authenticate.UpdateUserRequest.BuilderauthenticationMode(AuthenticationMode authenticationMode)Denotes the user's authentication properties, such as whether it requires a password to authenticate.UpdateUserRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateUserRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateUserRequest.BuilderuserName(String userName)The name of the user-
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.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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userName
UpdateUserRequest.Builder userName(String 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
UpdateUserRequest.Builder authenticationMode(AuthenticationMode 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.Builderavoiding the need to create one manually viaAuthenticationMode.builder().When the
Consumercompletes,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:
authenticationMode(AuthenticationMode)
-
accessString
UpdateUserRequest.Builder accessString(String 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)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-