Interface ConfigurationSetEventDestinationProps
- All Superinterfaces:
 ConfigurationSetEventDestinationOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 ConfigurationSetEventDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:48.942Z")
@Stability(Stable)
public interface ConfigurationSetEventDestinationProps
extends software.amazon.jsii.JsiiSerializable, ConfigurationSetEventDestinationOptions
Properties for a configuration set event destination.
 
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.*;
 ConfigurationSet configurationSet;
 EventDestination eventDestination;
 ConfigurationSetEventDestinationProps configurationSetEventDestinationProps = ConfigurationSetEventDestinationProps.builder()
         .configurationSet(configurationSet)
         .destination(eventDestination)
         // the properties below are optional
         .configurationSetEventDestinationName("configurationSetEventDestinationName")
         .enabled(false)
         .events(List.of(EmailSendingEvent.SEND))
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forConfigurationSetEventDestinationPropsstatic final classAn implementation forConfigurationSetEventDestinationProps - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration set that contains the event destination.Methods inherited from interface software.amazon.awscdk.services.ses.ConfigurationSetEventDestinationOptions
getConfigurationSetEventDestinationName, getDestination, getEnabled, getEventsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getConfigurationSet
The configuration set that contains the event destination. - 
builder
 
 -