pub struct GetRandomPasswordInput {
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>,
}Expand description
Secrets Manager GetRandomPasswordInput.
Fields§
§exclude_characters: Option<String>§exclude_lowercase: Option<bool>§exclude_numbers: Option<bool>§exclude_punctuation: Option<bool>§exclude_uppercase: Option<bool>§include_space: Option<bool>§password_length: Option<i64>§require_each_included_type: Option<bool>Trait Implementations§
Source§impl Clone for GetRandomPasswordInput
impl Clone for GetRandomPasswordInput
Source§fn clone(&self) -> GetRandomPasswordInput
fn clone(&self) -> GetRandomPasswordInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetRandomPasswordInput
impl Debug for GetRandomPasswordInput
Source§impl Default for GetRandomPasswordInput
impl Default for GetRandomPasswordInput
Source§fn default() -> GetRandomPasswordInput
fn default() -> GetRandomPasswordInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRandomPasswordInput
impl<'de> Deserialize<'de> for GetRandomPasswordInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetRandomPasswordInput
impl RefUnwindSafe for GetRandomPasswordInput
impl Send for GetRandomPasswordInput
impl Sync for GetRandomPasswordInput
impl Unpin for GetRandomPasswordInput
impl UnsafeUnpin for GetRandomPasswordInput
impl UnwindSafe for GetRandomPasswordInput
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
Mutably borrows from an owned value. Read more