Struct rusoto_ses::UpdateCustomVerificationEmailTemplateRequest[][src]

pub struct UpdateCustomVerificationEmailTemplateRequest {
    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: String,
    pub template_subject: Option<String>,
}

Represents a request to update an existing 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 total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions in the Amazon SES Developer Guide.

The name of the custom verification email template that you want to update.

The subject line of the custom verification email.

Trait Implementations

impl Default for UpdateCustomVerificationEmailTemplateRequest
[src]

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

impl Debug for UpdateCustomVerificationEmailTemplateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCustomVerificationEmailTemplateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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