Interface CloudWatchDimension
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CloudWatchDimension.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:51.580Z")
@Stability(Stable)
public interface CloudWatchDimension
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ses.*; CloudWatchDimension cloudWatchDimension = CloudWatchDimension.builder() .defaultValue("defaultValue") .name("name") .source(CloudWatchDimensionSource.EMAIL_HEADER) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCloudWatchDimension
static final class
An implementation forCloudWatchDimension
-
Method Summary
Modifier and TypeMethodDescriptionstatic CloudWatchDimension.Builder
builder()
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.getName()
The name of an Amazon CloudWatch dimension associated with an email sending metric.The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultValue
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. -
getName
The name of an Amazon CloudWatch dimension associated with an email sending metric. -
getSource
The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch. -
builder
- Returns:
- a
CloudWatchDimension.Builder
ofCloudWatchDimension
-