[][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

allow_users_to_change_password: Option<bool>

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

expire_passwords: Option<bool>

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.

hard_expiry: Option<bool>

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

max_password_age: Option<i64>

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

minimum_password_length: Option<i64>

Minimum length to require for IAM user passwords.

password_reuse_prevention: Option<i64>

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

require_lowercase_characters: Option<bool>

Specifies whether to require lowercase characters for IAM user passwords.

require_numbers: Option<bool>

Specifies whether to require numbers for IAM user passwords.

require_symbols: Option<bool>

Specifies whether to require symbols for IAM user passwords.

require_uppercase_characters: Option<bool>

Specifies whether to require uppercase characters for IAM user passwords.

Trait Implementations

impl Clone for PasswordPolicy[src]

impl Debug for PasswordPolicy[src]

impl Default for PasswordPolicy[src]

impl PartialEq<PasswordPolicy> for PasswordPolicy[src]

impl StructuralPartialEq for PasswordPolicy[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.