Struct rusoto_ses::UpdateConfigurationSetReputationMetricsEnabledRequest[][src]

pub struct UpdateConfigurationSetReputationMetricsEnabledRequest {
    pub configuration_set_name: String,
    pub enabled: bool,
}

Represents a request to modify the reputation metric publishing settings for a configuration set.

Fields

The name of the configuration set that you want to update.

Describes whether or not Amazon SES will publish reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch.

Trait Implementations

impl Default for UpdateConfigurationSetReputationMetricsEnabledRequest
[src]

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

impl Debug for UpdateConfigurationSetReputationMetricsEnabledRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateConfigurationSetReputationMetricsEnabledRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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