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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConfigurationSetEventDestination.CloudWatchDestinationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimensionConfigurations
A list of dimensions upon which to categorize your emails when you publish email sending events to Amazon CloudWatch. -
builder
@Stability(Stable) static CfnConfigurationSetEventDestination.CloudWatchDestinationProperty.Builder builder()
-