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 type of 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.

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]

[src]

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

impl Debug for AdminCreateUserConfigType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AdminCreateUserConfigType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations