#[non_exhaustive]pub struct GetRandomPasswordInputBuilder { /* private fields */ }
Expand description
A builder for GetRandomPasswordInput
.
Implementations§
Source§impl GetRandomPasswordInputBuilder
impl GetRandomPasswordInputBuilder
Sourcepub fn password_length(self, input: i64) -> Self
pub fn password_length(self, input: i64) -> Self
The length of the password. If you don't include this parameter, the default length is 32 characters.
Sourcepub fn set_password_length(self, input: Option<i64>) -> Self
pub fn set_password_length(self, input: Option<i64>) -> Self
The length of the password. If you don't include this parameter, the default length is 32 characters.
Sourcepub fn get_password_length(&self) -> &Option<i64>
pub fn get_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, input: impl Into<String>) -> Self
pub fn exclude_characters(self, input: impl Into<String>) -> Self
A string of the characters that you don't want in the password.
Sourcepub fn set_exclude_characters(self, input: Option<String>) -> Self
pub fn set_exclude_characters(self, input: Option<String>) -> Self
A string of the characters that you don't want in the password.
Sourcepub fn get_exclude_characters(&self) -> &Option<String>
pub fn get_exclude_characters(&self) -> &Option<String>
A string of the characters that you don't want in the password.
Sourcepub fn exclude_numbers(self, input: bool) -> Self
pub fn exclude_numbers(self, input: bool) -> Self
Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
Sourcepub fn set_exclude_numbers(self, input: Option<bool>) -> Self
pub fn set_exclude_numbers(self, input: Option<bool>) -> Self
Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.
Sourcepub fn get_exclude_numbers(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn exclude_punctuation(self, input: bool) -> Self
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 set_exclude_punctuation(self, input: Option<bool>) -> Self
pub fn set_exclude_punctuation(self, input: Option<bool>) -> Self
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 get_exclude_punctuation(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn exclude_uppercase(self, input: bool) -> Self
Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
Sourcepub fn set_exclude_uppercase(self, input: Option<bool>) -> Self
pub fn set_exclude_uppercase(self, input: Option<bool>) -> Self
Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.
Sourcepub fn get_exclude_uppercase(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn exclude_lowercase(self, input: bool) -> Self
Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
Sourcepub fn set_exclude_lowercase(self, input: Option<bool>) -> Self
pub fn set_exclude_lowercase(self, input: Option<bool>) -> Self
Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.
Sourcepub fn get_exclude_lowercase(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn include_space(self, input: bool) -> Self
Specifies whether to include the space character. If you include this switch, the password can contain space characters.
Sourcepub fn set_include_space(self, input: Option<bool>) -> Self
pub fn set_include_space(self, input: Option<bool>) -> Self
Specifies whether to include the space character. If you include this switch, the password can contain space characters.
Sourcepub fn get_include_space(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn require_each_included_type(self, input: bool) -> Self
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.
Sourcepub fn set_require_each_included_type(self, input: Option<bool>) -> Self
pub fn set_require_each_included_type(self, input: Option<bool>) -> Self
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.
Sourcepub fn get_require_each_included_type(&self) -> &Option<bool>
pub fn get_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.
Sourcepub fn build(self) -> Result<GetRandomPasswordInput, BuildError>
pub fn build(self) -> Result<GetRandomPasswordInput, BuildError>
Consumes the builder and constructs a GetRandomPasswordInput
.
Source§impl GetRandomPasswordInputBuilder
impl GetRandomPasswordInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetRandomPasswordOutput, SdkError<GetRandomPasswordError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetRandomPasswordOutput, SdkError<GetRandomPasswordError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for GetRandomPasswordInputBuilder
impl Clone for GetRandomPasswordInputBuilder
Source§fn clone(&self) -> GetRandomPasswordInputBuilder
fn clone(&self) -> GetRandomPasswordInputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GetRandomPasswordInputBuilder
impl Default for GetRandomPasswordInputBuilder
Source§fn default() -> GetRandomPasswordInputBuilder
fn default() -> GetRandomPasswordInputBuilder
Source§impl PartialEq for GetRandomPasswordInputBuilder
impl PartialEq for GetRandomPasswordInputBuilder
Source§fn eq(&self, other: &GetRandomPasswordInputBuilder) -> bool
fn eq(&self, other: &GetRandomPasswordInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRandomPasswordInputBuilder
Auto Trait Implementations§
impl Freeze for GetRandomPasswordInputBuilder
impl RefUnwindSafe for GetRandomPasswordInputBuilder
impl Send for GetRandomPasswordInputBuilder
impl Sync for GetRandomPasswordInputBuilder
impl Unpin for GetRandomPasswordInputBuilder
impl UnwindSafe for GetRandomPasswordInputBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)