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.119.0 (build 1634eac)",
date="2025-11-17T14:41:01.026Z")
@Stability(Stable)
public interface ConfigurationSetEventDestinationOptions
extends software.amazon.jsii.JsiiSerializable
Options for a configuration set event destination.
Example:
import software.amazon.awscdk.services.events.*;
ConfigurationSet myConfigurationSet;
IEventBus bus = EventBus.fromEventBusName(this, "EventBus", "default");
myConfigurationSet.addEventDestination("ToEventBus", ConfigurationSetEventDestinationOptions.builder()
.destination(EventDestination.eventBus(bus))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forConfigurationSetEventDestinationOptionsstatic final classAn implementation forConfigurationSetEventDestinationOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA name for the configuration set event destination.The event destination.default BooleanWhether 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
-