Interface CfnConfigurationSetEventDestination.DimensionConfigurationProperty

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

@Stability(Stable) public static interface CfnConfigurationSetEventDestination.DimensionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains the dimension configuration to use when you publish email sending events to Amazon CloudWatch.

For information about publishing email sending events to Amazon CloudWatch, 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.*;
 DimensionConfigurationProperty dimensionConfigurationProperty = DimensionConfigurationProperty.builder()
         .defaultDimensionValue("defaultDimensionValue")
         .dimensionName("dimensionName")
         .dimensionValueSource("dimensionValueSource")
         .build();
 

See Also: