Interface CreateUserRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateUserRequest.Builder,CreateUserRequest>,MemoryDbRequest.Builder,SdkBuilder<CreateUserRequest.Builder,CreateUserRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateUserRequest
public static interface CreateUserRequest.Builder extends MemoryDbRequest.Builder, SdkPojo, CopyableBuilder<CreateUserRequest.Builder,CreateUserRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateUserRequest.BuilderaccessString(String accessString)Access permissions string used for this user.default CreateUserRequest.BuilderauthenticationMode(Consumer<AuthenticationMode.Builder> authenticationMode)Denotes the user's authentication properties, such as whether it requires a password to authenticate.CreateUserRequest.BuilderauthenticationMode(AuthenticationMode authenticationMode)Denotes the user's authentication properties, such as whether it requires a password to authenticate.CreateUserRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateUserRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateUserRequest.Buildertags(Collection<Tag> tags)A list of tags to be added to this resource.CreateUserRequest.Buildertags(Consumer<Tag.Builder>... tags)A list of tags to be added to this resource.CreateUserRequest.Buildertags(Tag... tags)A list of tags to be added to this resource.CreateUserRequest.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, sdkFields
-
-
-
-
Method Detail
-
userName
CreateUserRequest.Builder userName(String userName)
The name of the user. This value must be unique as it also serves as the user identifier.
- Parameters:
userName- The name of the user. This value must be unique as it also serves as the user identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMode
CreateUserRequest.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 CreateUserRequest.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
CreateUserRequest.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.
-
tags
CreateUserRequest.Builder tags(Collection<Tag> tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
- Parameters:
tags- A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateUserRequest.Builder tags(Tag... tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
- Parameters:
tags- A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateUserRequest.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
CreateUserRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateUserRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-