Struct rusoto_secretsmanager::GetRandomPasswordRequest[][src]

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

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.

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.

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.

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.

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.

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.

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

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 Default for GetRandomPasswordRequest
[src]

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

impl Debug for GetRandomPasswordRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetRandomPasswordRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetRandomPasswordRequest
[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