[−][src]Struct rusoto_iam::PasswordPolicy
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 PartialEq<PasswordPolicy> for PasswordPolicy
[src]
fn eq(&self, other: &PasswordPolicy) -> bool
[src]
fn ne(&self, other: &PasswordPolicy) -> bool
[src]
impl Default for PasswordPolicy
[src]
fn default() -> PasswordPolicy
[src]
impl Clone for PasswordPolicy
[src]
fn clone(&self) -> PasswordPolicy
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for PasswordPolicy
[src]
Auto Trait Implementations
impl Send for PasswordPolicy
impl Sync for PasswordPolicy
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self