interface CloudWatchDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnConfigurationSetEventDestination.CloudWatchDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnConfigurationSetEventDestination_CloudWatchDestinationProperty |
Java | software.amazon.awscdk.services.ses.CfnConfigurationSetEventDestination.CloudWatchDestinationProperty |
Python | aws_cdk.aws_ses.CfnConfigurationSetEventDestination.CloudWatchDestinationProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnConfigurationSetEventDestination » CloudWatchDestinationProperty |
An object that defines an Amazon CloudWatch destination for email events.
You can use Amazon CloudWatch to monitor and gain insights on your email sending metrics.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const cloudWatchDestinationProperty: ses.CfnConfigurationSetEventDestination.CloudWatchDestinationProperty = {
dimensionConfigurations: [{
defaultDimensionValue: 'defaultDimensionValue',
dimensionName: 'dimensionName',
dimensionValueSource: 'dimensionValueSource',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | IResolvable | (IResolvable | Dimension)[] | An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch. |
dimensionConfigurations?
Type:
IResolvable | (IResolvable | Dimension)[]
(optional)
An array of objects that define the dimensions to use when you send email events to Amazon CloudWatch.

.NET
Go
Java
Python
TypeScript