public static interface CfnUser.AuthenticationModeProperty
Used in output responses.
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.*; AuthenticationModeProperty authenticationModeProperty = AuthenticationModeProperty.builder() .passwords(List.of("passwords")) .type("type") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUser.AuthenticationModeProperty.Builder
A builder for
CfnUser.AuthenticationModeProperty |
static class |
CfnUser.AuthenticationModeProperty.Jsii$Proxy
An implementation for
CfnUser.AuthenticationModeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUser.AuthenticationModeProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getPasswords()
The password(s) used for authentication.
|
default java.lang.String |
getType()
Indicates whether the user requires a password to authenticate.
|
default java.util.List<java.lang.String> getPasswords()
default java.lang.String getType()
All newly-created users require a password.
static CfnUser.AuthenticationModeProperty.Builder builder()