Interface ConfigurationSetEventDestinationProps
- All Superinterfaces:
ConfigurationSetEventDestinationOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ConfigurationSetEventDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:39.562Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConfigurationSetEventDestinationProps
static final class
An 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, getEvents
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationSet
The configuration set that contains the event destination. -
builder
-