interface CloudWatchDimension
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CloudWatchDimension |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CloudWatchDimension |
Java | software.amazon.awscdk.services.ses.CloudWatchDimension |
Python | aws_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
Name | Type | Description |
---|---|---|
default | 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 | string | The name of an Amazon CloudWatch dimension associated with an email sending metric. |
source | Cloud | The 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:
Cloud
The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.