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

impl Debug for GetRandomPasswordRequest[src]

impl Default for GetRandomPasswordRequest[src]

impl PartialEq<GetRandomPasswordRequest> for GetRandomPasswordRequest[src]

impl Serialize for GetRandomPasswordRequest[src]

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