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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.AuthenticationModePropertystatic final classAn 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 ifTypeis set topassword. -
builder
-