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]

[src]

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

impl Debug for ListConfigurationSetsResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListConfigurationSetsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations