[][src]Struct rusoto_iam::PasswordPolicy

pub struct PasswordPolicy {
    pub allow_users_to_change_password: Option<bool>,
    pub expire_passwords: Option<bool>,
    pub hard_expiry: Option<bool>,
    pub max_password_age: Option<i64>,
    pub minimum_password_length: Option<i64>,
    pub password_reuse_prevention: Option<i64>,
    pub require_lowercase_characters: Option<bool>,
    pub require_numbers: Option<bool>,
    pub require_symbols: Option<bool>,
    pub require_uppercase_characters: Option<bool>,
}

Contains information about the account password policy.

This data type is used as a response element in the GetAccountPasswordPolicy operation.

Fields

Specifies whether IAM users are allowed to change their own password.

Indicates whether passwords in the account expire. Returns true if MaxPasswordAge contains a value greater than 0. Returns false if MaxPasswordAge is 0 or not present.

Specifies whether IAM users are prevented from setting a new password after their password has expired.

The number of days that an IAM user password is valid.

Minimum length to require for IAM user passwords.

Specifies the number of previous passwords that IAM users are prevented from reusing.

Specifies whether to require lowercase characters for IAM user passwords.

Specifies whether to require numbers for IAM user passwords.

Specifies whether to require symbols for IAM user passwords.

Specifies whether to require uppercase characters for IAM user passwords.

Trait Implementations

impl Clone for PasswordPolicy
[src]

Performs copy-assignment from source. Read more

impl Default for PasswordPolicy
[src]

impl PartialEq<PasswordPolicy> for PasswordPolicy
[src]

impl Debug for PasswordPolicy
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T