Struct rusoto_ses::CustomVerificationEmailTemplate[][src]

pub struct CustomVerificationEmailTemplate {
    pub failure_redirection_url: Option<String>,
    pub from_email_address: Option<String>,
    pub success_redirection_url: Option<String>,
    pub template_name: Option<String>,
    pub template_subject: Option<String>,
}

Contains information about a custom verification email template.

Fields

The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

The email address that the custom verification email is sent from.

The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

The name of the custom verification email template.

The subject line of the custom verification email.

Trait Implementations

impl Default for CustomVerificationEmailTemplate
[src]

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

impl Debug for CustomVerificationEmailTemplate
[src]

Formats the value using the given formatter. Read more

impl Clone for CustomVerificationEmailTemplate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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