AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the UpdateConfigurationSetReputationMetricsEnabled operation. 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SimpleEmail.AmazonSimpleEmailServiceRequest
      Amazon.SimpleEmail.Model.UpdateConfigurationSetReputationMetricsEnabledRequest

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z

Syntax

C#
public class UpdateConfigurationSetReputationMetricsEnabledRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The UpdateConfigurationSetReputationMetricsEnabledRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ConfigurationSetName System.String

Gets and sets the property ConfigurationSetName.

The name of the configuration set to update.

Public Property Enabled System.Boolean

Gets and sets the property Enabled.

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

Examples

Set the reputationMetricsEnabled flag for a specific configuration set.

UpdateConfigurationSetReputationMetricsEnabled


var client = new AmazonSimpleEmailServiceClient();
var response = client.UpdateConfigurationSetReputationMetricsEnabled(new UpdateConfigurationSetReputationMetricsEnabledRequest 
{
    ConfigurationSetName = "foo",
    Enabled = true
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5