Struct rusoto_cognito_idp::VerificationMessageTemplateType[][src]

pub struct VerificationMessageTemplateType {
    pub default_email_option: Option<String>,
    pub email_message: Option<String>,
    pub email_message_by_link: Option<String>,
    pub email_subject: Option<String>,
    pub email_subject_by_link: Option<String>,
    pub sms_message: Option<String>,
}

The template for verification messages.

Fields

The default email option.

The email message template.

The email message template for sending a confirmation link to the user.

The subject line for the email message template.

The subject line for the email message template for sending a confirmation link to the user.

The SMS message template.

Trait Implementations

impl Default for VerificationMessageTemplateType
[src]

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

impl Debug for VerificationMessageTemplateType
[src]

Formats the value using the given formatter. Read more

impl Clone for VerificationMessageTemplateType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VerificationMessageTemplateType
[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