Interface CfnUserMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.702Z")
@Stability(Stable)
public interface CfnUserMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.memorydb.*;
Object authenticationMode;
CfnUserMixinProps cfnUserMixinProps = CfnUserMixinProps.builder()
.accessString("accessString")
.authenticationMode(authenticationMode)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userName("userName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserMixinPropsstatic final classAn implementation forCfnUserMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUserMixinProps.Builderbuilder()default StringAccess permissions string used for this user.default ObjectDenotes whether the user requires a password to authenticate.getTags()An array of key-value pairs to apply to this resource.default StringThe name of the user.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessString
Access permissions string used for this user.- See Also:
-
getAuthenticationMode
Denotes whether the user requires a password to authenticate.Example:
mynewdbuser: Type: AWS::MemoryDB::User Properties: AccessString: on ~* &* +@all AuthenticationMode: Passwords: '1234567890123456' Type: password UserName: mynewdbuser AuthenticationMode: { "Passwords": ["1234567890123456"], "Type": "Password" }- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
getUserName
The name of the user.- See Also:
-
builder
- Returns:
- a
CfnUserMixinProps.BuilderofCfnUserMixinProps
-