Struct rusoto_ses::ListConfigurationSetsResponse[][src]

pub struct ListConfigurationSetsResponse {
    pub configuration_sets: Option<Vec<ConfigurationSet>>,
    pub next_token: Option<String>,
}

A list of 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

A list of configuration sets.

A token indicating that there are additional configuration sets available to be listed. Pass this token to successive calls of ListConfigurationSets.

Trait Implementations

impl Default for ListConfigurationSetsResponse
[src]

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

impl Debug for ListConfigurationSetsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListConfigurationSetsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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