class EventBridgeDestination
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.EventBridgeDestination |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#EventBridgeDestination |
Java | software.amazon.awscdk.services.appconfig.EventBridgeDestination |
Python | aws_cdk.aws_appconfig.EventBridgeDestination |
TypeScript (source) | aws-cdk-lib » aws_appconfig » EventBridgeDestination |
Implements
IEvent
Use an Amazon EventBridge event bus as an event destination.
Example
const bus = events.EventBus.fromEventBusName(this, 'MyEventBus', 'default');
new appconfig.Extension(this, 'MyExtension', {
actions: [
new appconfig.Action({
actionPoints: [appconfig.ActionPoint.ON_DEPLOYMENT_START],
eventDestination: new appconfig.EventBridgeDestination(bus),
}),
],
});
Initializer
new EventBridgeDestination(bus: IEventBus)
Parameters
- bus
IEventBus
Properties
| Name | Type | Description |
|---|---|---|
| extension | string | The URI of the extension event destination. |
| type | Source | The type of the extension event destination. |
extensionUri
Type:
string
The URI of the extension event destination.
type
Type:
Source
The type of the extension event destination.

.NET
Go
Java
Python
TypeScript (