[][src]Struct rusoto_secretsmanager::GetRandomPasswordRequest

pub struct GetRandomPasswordRequest {
    pub exclude_characters: Option<String>,
    pub exclude_lowercase: Option<bool>,
    pub exclude_numbers: Option<bool>,
    pub exclude_punctuation: Option<bool>,
    pub exclude_uppercase: Option<bool>,
    pub include_space: Option<bool>,
    pub password_length: Option<i64>,
    pub require_each_included_type: Option<bool>,
}

Fields

exclude_characters: Option<String>

A string that includes characters that should not be included in the generated password. The default is that all characters from the included sets can be used.

exclude_lowercase: Option<bool>

Specifies that the generated password should not include lowercase letters. The default if you do not include this switch parameter is that lowercase letters can be included.

exclude_numbers: Option<bool>

Specifies that the generated password should not include digits. The default if you do not include this switch parameter is that digits can be included.

exclude_punctuation: Option<bool>

Specifies that the generated password should not include punctuation characters. The default if you do not include this switch parameter is that punctuation characters can be included.

The following are the punctuation characters that can be included in the generated password if you don't explicitly exclude them with ExcludeCharacters or ExcludePunctuation:

! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~

exclude_uppercase: Option<bool>

Specifies that the generated password should not include uppercase letters. The default if you do not include this switch parameter is that uppercase letters can be included.

include_space: Option<bool>

Specifies that the generated password can include the space character. The default if you do not include this switch parameter is that the space character is not included.

password_length: Option<i64>

The desired length of the generated password. The default value if you do not include this parameter is 32 characters.

require_each_included_type: Option<bool>

A boolean value that specifies whether the generated password must include at least one of every allowed character type. The default value is True and the operation requires at least one of every character type.

Trait Implementations

impl PartialEq<GetRandomPasswordRequest> for GetRandomPasswordRequest[src]

impl Default for GetRandomPasswordRequest[src]

impl Clone for GetRandomPasswordRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetRandomPasswordRequest[src]

impl Serialize for GetRandomPasswordRequest[src]

Auto Trait Implementations

impl Send for GetRandomPasswordRequest

impl Sync for GetRandomPasswordRequest

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]

type Owned = T

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

type Error = !

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

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

🔬 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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self