interface EventBridgeDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetEventDestinationPropsMixin_EventBridgeDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetEventDestinationPropsMixin » EventBridgeDestinationProperty |
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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const eventBridgeDestinationProperty: ses_mixins.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty = {
eventBusArn: 'eventBusArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The Amazon Resource Name (ARN) of the Amazon EventBridge bus to publish email events to. |
eventBusArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon EventBridge bus to publish email events to.
Only the default bus is supported.

.NET
Go
Java
Python
TypeScript