interface EventBridgeDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnConfigurationSetEventDestinationPropsMixin_EventBridgeDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnConfigurationSetEventDestinationPropsMixin.EventBridgeDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const eventBridgeDestinationProperty: ses.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