data class EndpointRedisSettings(val authPassword: String? = null, val authType: String, val authUserName: String? = null, val port: Int, val serverName: String, val sslCaCertificateArn: String? = null, val sslSecurityProtocol: String? = null)
The type of authentication to perform when connecting to a Redis target. Options include none, auth-token, and auth-role. The auth-token option requires an auth_password value to be provided. The auth-role option requires auth_user_name and auth_password values to be provided.
The plaintext option doesn't provide Transport Layer Security (TLS) encryption for traffic between endpoint and database. Options include plaintext, ssl-encryption. The default is ssl-encryption.