updateConfigurationSetReputationMetricsEnabled

Enables or disables the publishing of reputation metrics for emails sent using a specific configuration set in a given Amazon Web Services Region. Reputation metrics include bounce and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can create alarms when bounce or complaint rates exceed certain thresholds.

You can execute this operation no more than once per second.

Samples


fun main() { 
   //sampleStart 
   // Set the reputationMetricsEnabled flag for a specific configuration set.
sesClient.updateConfigurationSetReputationMetricsEnabled {
    configurationSetName = "foo"
    enabled = true
} 
   //sampleEnd
}