Struct rusoto_cognito_idp::PasswordPolicyType [] [src]

pub struct PasswordPolicyType {
    pub minimum_length: Option<i64>,
    pub require_lowercase: Option<bool>,
    pub require_numbers: Option<bool>,
    pub require_symbols: Option<bool>,
    pub require_uppercase: Option<bool>,
}

The password policy type.

Fields

The minimum length of the password policy that you have set. Cannot be less than 6.

In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.

In the password policy that you have set, refers to whether you have required users to use at least one number in their password.

In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.

In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.

Trait Implementations

impl Default for PasswordPolicyType
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for PasswordPolicyType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PasswordPolicyType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations