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
Contains information associated with an Amazon CloudWatch event destination to which email sending events are published.

Event destinations, such as Amazon CloudWatch, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide .

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.*;
 CloudWatchDestinationProperty cloudWatchDestinationProperty = CloudWatchDestinationProperty.builder()
         .dimensionConfigurations(List.of(DimensionConfigurationProperty.builder()
                 .defaultDimensionValue("defaultDimensionValue")
                 .dimensionName("dimensionName")
                 .dimensionValueSource("dimensionValueSource")
                 .build()))
         .build();