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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUser.AuthenticationModeProperty
static final class
An implementation forCfnUser.AuthenticationModeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
Specifies the authentication type.Possible options are IAM authentication, password and no password.
-
getPasswords
Specifies the passwords to use for authentication ifType
is set topassword
. -
builder
-