Struct rusoto_ses::ListConfigurationSetsRequest[][src]

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

Represents a request to list the configuration sets associated with your AWS account. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The number of configuration sets to return.

A token returned from a previous call to ListConfigurationSets to indicate the position of the configuration set in the configuration set list.

Trait Implementations

impl Default for ListConfigurationSetsRequest
[src]

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

impl Debug for ListConfigurationSetsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListConfigurationSetsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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