pub struct UserStackAssociation {
pub authentication_type: String,
pub send_email_notification: Option<bool>,
pub stack_name: String,
pub user_name: String,
}
Expand description
Describes a user in the user pool and the associated stack.
Fields§
§authentication_type: String
The authentication type for the user.
send_email_notification: Option<bool>
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
stack_name: String
The name of the stack that is associated with the user.
user_name: String
The email address of the user who is associated with the stack.
Users' email addresses are case-sensitive.
Trait Implementations§
Source§impl Clone for UserStackAssociation
impl Clone for UserStackAssociation
Source§fn clone(&self) -> UserStackAssociation
fn clone(&self) -> UserStackAssociation
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 UserStackAssociation
impl Debug for UserStackAssociation
Source§impl Default for UserStackAssociation
impl Default for UserStackAssociation
Source§fn default() -> UserStackAssociation
fn default() -> UserStackAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserStackAssociation
impl<'de> Deserialize<'de> for UserStackAssociation
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 PartialEq for UserStackAssociation
impl PartialEq for UserStackAssociation
Source§impl Serialize for UserStackAssociation
impl Serialize for UserStackAssociation
impl StructuralPartialEq for UserStackAssociation
Auto Trait Implementations§
impl Freeze for UserStackAssociation
impl RefUnwindSafe for UserStackAssociation
impl Send for UserStackAssociation
impl Sync for UserStackAssociation
impl Unpin for UserStackAssociation
impl UnwindSafe for UserStackAssociation
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