UserPasswordValidationPolicyArgs

data class UserPasswordValidationPolicyArgs(val allowedFailedAttempts: Output<Int>? = null, val enableFailedAttemptsCheck: Output<Boolean>? = null, val enablePasswordVerification: Output<Boolean>? = null, val passwordExpirationDuration: Output<String>? = null) : ConvertibleToJava<UserPasswordValidationPolicyArgs>

User level password validation policy.

Constructors

Link copied to clipboard
fun UserPasswordValidationPolicyArgs(allowedFailedAttempts: Output<Int>? = null, enableFailedAttemptsCheck: Output<Boolean>? = null, enablePasswordVerification: Output<Boolean>? = null, passwordExpirationDuration: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): UserPasswordValidationPolicyArgs

Properties

Link copied to clipboard
val allowedFailedAttempts: Output<Int>? = null

Number of failed login attempts allowed before user get locked.

Link copied to clipboard
val enableFailedAttemptsCheck: Output<Boolean>? = null

If true, failed login attempts check will be enabled.

Link copied to clipboard
val enablePasswordVerification: Output<Boolean>? = null

If true, the user must specify the current password before changing the password. This flag is supported only for MySQL.

Link copied to clipboard
val passwordExpirationDuration: Output<String>? = null

Expiration duration after password is updated.