[][src]Struct rusoto_appstream::User

pub struct User {
    pub arn: Option<String>,
    pub authentication_type: String,
    pub created_time: Option<f64>,
    pub enabled: Option<bool>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub status: Option<String>,
    pub user_name: Option<String>,
}

Describes a user in the user pool.

Fields

arn: Option<String>

The ARN of the user.

authentication_type: String

The authentication type for the user.

created_time: Option<f64>

The date and time the user was created in the user pool.

enabled: Option<bool>

Specifies whether the user in the user pool is enabled.

first_name: Option<String>

The first name, or given name, of the user.

last_name: Option<String>

The last name, or surname, of the user.

status: Option<String>

The status of the user in the user pool. The status can be one of the following:

  • UNCONFIRMED – The user is created but not confirmed.

  • CONFIRMED – The user is confirmed.

  • ARCHIVED – The user is no longer active.

  • COMPROMISED – The user is disabled because of a potential security threat.

  • UNKNOWN – The user status is not known.

user_name: Option<String>

The email address of the user.

Users' email addresses are case-sensitive.

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

impl Default for User[src]

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

impl PartialEq<User> for User[src]

impl StructuralPartialEq for User[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.