Interface CfnUser.AuthenticationModeProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnUser.AuthenticationModeProperty.Jsii$Proxy
- Enclosing class:
- CfnUser
@Stability(Stable)
public static interface CfnUser.AuthenticationModeProperty
extends software.amazon.jsii.JsiiSerializable
Denotes the user's authentication properties, such as whether it requires a password to authenticate.
 
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();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.AuthenticationModePropertystatic final classAn implementation forCfnUser.AuthenticationModeProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getPasswordsThe password(s) used for authentication.- See Also:
 
- 
getTypeIndicates whether the user requires a password to authenticate.All newly-created users require a password. - See Also:
 
- 
builder
 
-