interface ReputationOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SES.CfnConfigurationSet.ReputationOptionsProperty | 
|  Java | software.amazon.awscdk.services.ses.CfnConfigurationSet.ReputationOptionsProperty | 
|  Python | aws_cdk.aws_ses.CfnConfigurationSet.ReputationOptionsProperty | 
|  TypeScript | @aws-cdk/aws-ses»CfnConfigurationSet»ReputationOptionsProperty | 
Contains information about the reputation settings for a configuration set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ses from '@aws-cdk/aws-ses';
const reputationOptionsProperty: ses.CfnConfigurationSet.ReputationOptionsProperty = {
  reputationMetricsEnabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| reputation | boolean | IResolvable | Describes whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. | 
reputationMetricsEnabled?
Type:
boolean | IResolvable
(optional)
Describes whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch.
If the value is true , reputation metrics are published. If the value is false , reputation metrics are not published. The default value is false .
