Struct rusoto_ses::ListTemplatesRequest[][src]

pub struct ListTemplatesRequest {
    pub max_items: Option<i64>,
    pub next_token: Option<String>,
}

Fields

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

A token returned from a previous call to ListTemplates to indicate the position in the list of email templates.

Trait Implementations

impl Default for ListTemplatesRequest
[src]

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

impl Debug for ListTemplatesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTemplatesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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