Interface CfnConfigurationSetEventDestination.CloudWatchDestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationSetEventDestination.CloudWatchDestinationProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationSetEventDestination

@Stability(Stable) public static interface CfnConfigurationSetEventDestination.CloudWatchDestinationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pinpointemail.*;
 CloudWatchDestinationProperty cloudWatchDestinationProperty = CloudWatchDestinationProperty.builder()
         .dimensionConfigurations(List.of(DimensionConfigurationProperty.builder()
                 .defaultDimensionValue("defaultDimensionValue")
                 .dimensionName("dimensionName")
                 .dimensionValueSource("dimensionValueSource")
                 .build()))
         .build();
 

See Also: