Struct rusoto_ses::GetCustomVerificationEmailTemplateResponse[][src]

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

The content of the 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 content of the custom verification email.

The name of the custom verification email template.

The subject line of the custom verification email.

Trait Implementations

impl Default for GetCustomVerificationEmailTemplateResponse
[src]

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

impl Debug for GetCustomVerificationEmailTemplateResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetCustomVerificationEmailTemplateResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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