[][src]Struct rusoto_appstream::UserStackAssociation

pub struct UserStackAssociation {
    pub authentication_type: String,
    pub send_email_notification: Option<bool>,
    pub stack_name: String,
    pub user_name: String,
}

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

impl Clone for UserStackAssociation[src]

impl Debug for UserStackAssociation[src]

impl Default for UserStackAssociation[src]

impl<'de> Deserialize<'de> for UserStackAssociation[src]

impl PartialEq<UserStackAssociation> for UserStackAssociation[src]

impl Serialize for UserStackAssociation[src]

impl StructuralPartialEq for UserStackAssociation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.