Struct rusoto_ses::ListCustomVerificationEmailTemplatesResponse[][src]

pub struct ListCustomVerificationEmailTemplatesResponse {
    pub custom_verification_email_templates: Option<Vec<CustomVerificationEmailTemplate>>,
    pub next_token: Option<String>,
}

A paginated list of custom verification email templates.

Fields

A list of the custom verification email templates that exist in your account.

A token indicating that there are additional custom verification email templates available to be listed. Pass this token to a subsequent call to ListTemplates to retrieve the next 50 custom verification email templates.

Trait Implementations

impl Default for ListCustomVerificationEmailTemplatesResponse
[src]

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

impl Debug for ListCustomVerificationEmailTemplatesResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCustomVerificationEmailTemplatesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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