Struct rusoto_ses::ListCustomVerificationEmailTemplatesRequest[][src]

pub struct ListCustomVerificationEmailTemplatesRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Represents a request to list the existing custom verification email templates for your account.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

Fields

The maximum number of custom verification email templates to return. This value must be at least 1 and less than or equal to 50. If you do not specify a value, or if you specify a value less than 1 or greater than 50, the operation will return up to 50 results.

An array the contains the name and creation time stamp for each template in your Amazon SES account.

Trait Implementations

impl Default for ListCustomVerificationEmailTemplatesRequest
[src]

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

impl Debug for ListCustomVerificationEmailTemplatesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCustomVerificationEmailTemplatesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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