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
Specifies the authentication mode to use.

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.elasticache.*;
 AuthenticationModeProperty authenticationModeProperty = AuthenticationModeProperty.builder()
         .type("type")
         // the properties below are optional
         .passwords(List.of("passwords"))
         .build();
 

See Also: