[][src]Struct rusoto_appstream::CreateUserRequest

pub struct CreateUserRequest {
    pub authentication_type: String,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub message_action: Option<String>,
    pub user_name: String,
}

Fields

authentication_type: String

The authentication type for the user. You must specify USERPOOL.

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.

message_action: Option<String>

The action to take for the welcome email that is sent to a user after the user is created in the user pool. If you specify SUPPRESS, no email is sent. If you specify RESEND, do not specify the first name or last name of the user. If the value is null, the email is sent.

The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.

user_name: String

The email address of the user.

Users' email addresses are case-sensitive. During login, if they specify an email address that doesn't use the same capitalization as the email address specified when their user pool account was created, a "user does not exist" error message displays.

Trait Implementations

impl PartialEq<CreateUserRequest> for CreateUserRequest[src]

impl Default for CreateUserRequest[src]

impl Clone for CreateUserRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateUserRequest[src]

impl Serialize for CreateUserRequest[src]

Auto Trait Implementations

impl Send for CreateUserRequest

impl Sync for CreateUserRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self