Struct rusoto_ses::SendCustomVerificationEmailRequest[][src]

pub struct SendCustomVerificationEmailRequest {
    pub configuration_set_name: Option<String>,
    pub email_address: String,
    pub template_name: String,
}

Represents a request to send a custom verification email to a specified recipient.

Fields

Name of a configuration set to use when sending the verification email.

The email address to verify.

The name of the custom verification email template to use when sending the verification email.

Trait Implementations

impl Default for SendCustomVerificationEmailRequest
[src]

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

impl Debug for SendCustomVerificationEmailRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SendCustomVerificationEmailRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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