Interface CfnConfigurationSetEventDestination.SnsDestinationProperty

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

@Stability(Stable) public static interface CfnConfigurationSetEventDestination.SnsDestinationProperty extends software.amazon.jsii.JsiiSerializable
An object that defines an Amazon SNS destination for email events.

You can use Amazon SNS to send notification when certain email events occur.

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.*;
 SnsDestinationProperty snsDestinationProperty = SnsDestinationProperty.builder()
         .topicArn("topicArn")
         .build();
 

See Also: