@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:27.146Z")
public interface CfnUserProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.memorydb.*; Object authenticationMode; CfnUserProps cfnUserProps = CfnUserProps.builder() .accessString("accessString") .authenticationMode(authenticationMode) .userName("userName") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserProps.Builder
A builder for
CfnUserProps |
static class |
CfnUserProps.Jsii$Proxy
An implementation for
CfnUserProps |
Modifier and Type | Method and Description |
---|---|
static CfnUserProps.Builder |
builder() |
java.lang.String |
getAccessString()
Access permissions string used for this user.
|
java.lang.Object |
getAuthenticationMode()
Denotes whether the user requires a password to authenticate.
|
default java.util.List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
java.lang.String |
getUserName()
The name of the user.
|
java.lang.String getAccessString()
java.lang.Object getAuthenticationMode()
Example:
mynewdbuser: Type: AWS::MemoryDB::User Properties: AccessString: on ~* &* +@all AuthenticationMode: Passwords: '1234567890123456' Type: password UserName: mynewdbuser AuthenticationMode: { "Passwords": ["1234567890123456"], "Type": "Password" }
java.lang.String getUserName()
default java.util.List<CfnTag> getTags()
For more information, see Tag .
static CfnUserProps.Builder builder()
CfnUserProps.Builder
of CfnUserProps