interface CloudWatchDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnConfigurationSetEventDestinationPropsMixin.CloudWatchDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnConfigurationSetEventDestinationPropsMixin_CloudWatchDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnConfigurationSetEventDestinationPropsMixin.CloudWatchDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnConfigurationSetEventDestinationPropsMixin.CloudWatchDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnConfigurationSetEventDestinationPropsMixin » 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/cfn-property-mixins';
const cloudWatchDestinationProperty: ses.CfnConfigurationSetEventDestinationPropsMixin.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