Authentication Mode Properties Args
data class AuthenticationModePropertiesArgs(val passwords: Output<List<String>>? = null, val type: Output<UserAuthenticationModePropertiesType>? = null) : ConvertibleToJava<AuthenticationModePropertiesArgs>
Denotes whether the user requires a password to authenticate. Example: mynewdbuser: Type: AWS::MemoryDB::User Properties: AccessString: on ~* &* +@all AuthenticationMode: Passwords: '1234567890123456' Type: password UserName: mynewdbuser AuthenticationMode: { "Passwords": ["1234567890123456"], "Type": "Password" }
Constructors
Link copied to clipboard
constructor(passwords: Output<List<String>>? = null, type: Output<UserAuthenticationModePropertiesType>? = null)