Interface ConfigurationSetEventDestinationOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
ConfigurationSetEventDestinationProps
All Known Implementing Classes:
ConfigurationSetEventDestinationOptions.Jsii$Proxy, ConfigurationSetEventDestinationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:56:06.313Z") @Stability(Stable) public interface ConfigurationSetEventDestinationOptions extends software.amazon.jsii.JsiiSerializable
Options for a configuration set event destination.

Example:

 ConfigurationSet myConfigurationSet;
 Topic myTopic;
 myConfigurationSet.addEventDestination("ToSns", ConfigurationSetEventDestinationOptions.builder()
         .destination(EventDestination.snsTopic(myTopic))
         .build());