pub struct UserAccount {
pub encrypted_password: Option<String>,
pub kms_key_version: Option<String>,
}Expand description
User account provisioned for the customer.
This type is not used in any activity, and only used as part of another schema.
Fields§
§encrypted_password: Option<String>Encrypted initial password value.
kms_key_version: Option<String>KMS CryptoKey Version used to encrypt the password.
Trait Implementations§
Source§impl Clone for UserAccount
impl Clone for UserAccount
Source§fn clone(&self) -> UserAccount
fn clone(&self) -> UserAccount
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 UserAccount
impl Debug for UserAccount
Source§impl Default for UserAccount
impl Default for UserAccount
Source§fn default() -> UserAccount
fn default() -> UserAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAccount
impl<'de> Deserialize<'de> for UserAccount
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
Source§impl Serialize for UserAccount
impl Serialize for UserAccount
impl Part for UserAccount
Auto Trait Implementations§
impl Freeze for UserAccount
impl RefUnwindSafe for UserAccount
impl Send for UserAccount
impl Sync for UserAccount
impl Unpin for UserAccount
impl UnwindSafe for UserAccount
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