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]

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

impl Debug for PasswordPolicyType
[src]

Formats the value using the given formatter. Read more

impl Clone for PasswordPolicyType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PasswordPolicyType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations