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());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConfigurationSetEventDestinationOptions
static final class
An implementation forConfigurationSetEventDestinationOptions
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A name for the configuration set event destination.The event destination.default Boolean
Whether Amazon SES publishes events to this destination.default List<EmailSendingEvent>
The type of email sending events to publish to the event destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The event destination. -
getConfigurationSetEventDestinationName
A name for the configuration set event destination.Default: - a CloudFormation generated name
-
getEnabled
Whether Amazon SES publishes events to this destination.Default: true
-
getEvents
The type of email sending events to publish to the event destination.Default: - send all event types
-
builder
-