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.101.0 (build b95fe5d)", date="2024-07-12T19:34:10.015Z") @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());