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
Contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.

Event destinations, such as Amazon SNS, 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.*;
 SnsDestinationProperty snsDestinationProperty = SnsDestinationProperty.builder()
         .topicArn("topicArn")
         .build();
 

See Also: