#[non_exhaustive]pub struct GetRandomPasswordInput { /* private fields */ }Implementations
sourceimpl GetRandomPasswordInput
impl GetRandomPasswordInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRandomPassword, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetRandomPassword, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetRandomPassword>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetRandomPasswordInput.
sourceimpl GetRandomPasswordInput
impl GetRandomPasswordInput
sourcepub fn password_length(&self) -> Option<i64>
pub fn password_length(&self) -> Option<i64>
The length of the password. If you don't include this parameter, the default length is 32 characters.
sourcepub fn exclude_characters(&self) -> Option<&str>
pub fn exclude_characters(&self) -> Option<&str>
A string of the characters that you don't want in the password.
sourcepub fn exclude_numbers(&self) -> Option<bool>
pub fn exclude_numbers(&self) -> Option<bool>
Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
sourcepub fn exclude_punctuation(&self) -> Option<bool>
pub fn exclude_punctuation(&self) -> Option<bool>
Specifies whether to exclude the following punctuation characters from the password: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~. If you don't include this switch, the password can contain punctuation.
sourcepub fn exclude_uppercase(&self) -> Option<bool>
pub fn exclude_uppercase(&self) -> Option<bool>
Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
sourcepub fn exclude_lowercase(&self) -> Option<bool>
pub fn exclude_lowercase(&self) -> Option<bool>
Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
sourcepub fn include_space(&self) -> Option<bool>
pub fn include_space(&self) -> Option<bool>
Specifies whether to include the space character. If you include this switch, the password can contain space characters.
sourcepub fn require_each_included_type(&self) -> Option<bool>
pub fn require_each_included_type(&self) -> Option<bool>
Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.
Trait Implementations
sourceimpl Clone for GetRandomPasswordInput
impl Clone for GetRandomPasswordInput
sourcefn clone(&self) -> GetRandomPasswordInput
fn clone(&self) -> GetRandomPasswordInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more