Interface CloudWatchDimension

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CloudWatchDimension.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:10.013Z") @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();
 
  • Method Details

    • getDefaultValue

      @Stability(Stable) @NotNull String 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

      @Stability(Stable) @NotNull String getName()
      The name of an Amazon CloudWatch dimension associated with an email sending metric.
    • getSource

      @Stability(Stable) @NotNull CloudWatchDimensionSource getSource()
      The place where Amazon SES finds the value of a dimension to publish to Amazon CloudWatch.
    • builder

      @Stability(Stable) static CloudWatchDimension.Builder builder()
      Returns:
      a CloudWatchDimension.Builder of CloudWatchDimension