[−][src]Struct rusoto_secretsmanager::GetRandomPasswordRequest
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]
fn eq(&self, other: &GetRandomPasswordRequest) -> bool
[src]
fn ne(&self, other: &GetRandomPasswordRequest) -> bool
[src]
impl Default for GetRandomPasswordRequest
[src]
fn default() -> GetRandomPasswordRequest
[src]
impl Clone for GetRandomPasswordRequest
[src]
fn clone(&self) -> 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]
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