Struct rusoto_cognito_idp::AdminCreateUserConfigType[][src]

pub struct AdminCreateUserConfigType {
    pub allow_admin_create_user_only: Option<bool>,
    pub invite_message_template: Option<MessageTemplateType>,
    pub unused_account_validity_days: Option<i64>,
}

The configuration for creating a new user profile.

Fields

Set to True if only the administrator is allowed to create user profiles. Set to False if users can sign themselves up via an app.

The message template to be used for the welcome message to new users.

See also Customizing User Invitation Messages.

The user account expiration limit, in days, after which the account is no longer usable. To reset the account after that time limit, you must call AdminCreateUser again, specifying "RESEND" for the MessageAction parameter. The default value for this parameter is 7.

Trait Implementations

impl Default for AdminCreateUserConfigType
[src]

Returns the "default value" for a type. Read more

impl Debug for AdminCreateUserConfigType
[src]

Formats the value using the given formatter. Read more

impl Clone for AdminCreateUserConfigType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AdminCreateUserConfigType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations