aws-cdk-lib.aws_ses.CloudWatchDimension

interface CloudWatchDimension

LanguageType name
.NETAmazon.CDK.AWS.SES.CloudWatchDimension
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CloudWatchDimension
Javasoftware.amazon.awscdk.services.ses.CloudWatchDimension
Pythonaws_cdk.aws_ses.CloudWatchDimension
TypeScript (source)aws-cdk-lib » aws_ses » CloudWatchDimension

A CloudWatch dimension upon which to categorize your emails.

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 cloudWatchDimension: ses.CloudWatchDimension = {
  defaultValue: 'defaultValue',
  name: 'name',
  source: ses.CloudWatchDimensionSource.EMAIL_HEADER,
};

Properties

NameTypeDescription
defaultValuestringThe default value of the dimension that is published to Amazon CloudWatch if you do not provide the value of the dimension when you send an email.
namestringThe name of an Amazon CloudWatch dimension associated with an email sending metric.
sourceCloudWatchDimensionSourceThe place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.

defaultValue

Type: string

The default value of the dimension that is published to Amazon CloudWatch if you do not provide the value of the dimension when you send an email.


name

Type: string

The name of an Amazon CloudWatch dimension associated with an email sending metric.


source

Type: CloudWatchDimensionSource

The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.