class EventBridgeDestination
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppConfig.EventBridgeDestination |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#EventBridgeDestination |
![]() | software.amazon.awscdk.services.appconfig.EventBridgeDestination |
![]() | aws_cdk.aws_appconfig.EventBridgeDestination |
![]() | 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
IEvent
Bus
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.