Interface CfnConfigurationSetEventDestination.EventBridgeDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetEventDestination.EventBridgeDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationSetEventDestination
@Stability(Stable)
public static interface CfnConfigurationSetEventDestination.EventBridgeDestinationProperty
extends software.amazon.jsii.JsiiSerializable
An object that defines an Amazon EventBridge destination for email events.
You can use Amazon EventBridge to send notifications when certain email events occur.
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.*;
EventBridgeDestinationProperty eventBridgeDestinationProperty = EventBridgeDestinationProperty.builder()
.eventBusArn("eventBusArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationSetEventDestination.EventBridgeDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Amazon Resource Name (ARN) of the Amazon EventBridge bus to publish email events to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventBusArn
The Amazon Resource Name (ARN) of the Amazon EventBridge bus to publish email events to.Only the default bus is supported.
- See Also:
-
builder
@Stability(Stable) static CfnConfigurationSetEventDestination.EventBridgeDestinationProperty.Builder builder()
-