[][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 Clone for CreateUserRequest[src]

impl Debug for CreateUserRequest[src]

impl Default for CreateUserRequest[src]

impl PartialEq<CreateUserRequest> for CreateUserRequest[src]

impl Serialize for CreateUserRequest[src]

impl StructuralPartialEq for CreateUserRequest[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> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.