Struct rusoto_ses::DescribeConfigurationSetResponse[][src]

pub struct DescribeConfigurationSetResponse {
    pub configuration_set: Option<ConfigurationSet>,
    pub event_destinations: Option<Vec<EventDestination>>,
    pub reputation_options: Option<ReputationOptions>,
    pub tracking_options: Option<TrackingOptions>,
}

Represents the details of a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.

Fields

The configuration set object associated with the specified configuration set.

A list of event destinations associated with the configuration set.

An object that represents the reputation settings for the configuration set.

The name of the custom open and click tracking domain associated with the configuration set.

Trait Implementations

impl Default for DescribeConfigurationSetResponse
[src]

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

impl Debug for DescribeConfigurationSetResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeConfigurationSetResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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