EventBridgeDestination

class aws_cdk.aws_appconfig.EventBridgeDestination(bus)

Bases: object

Use an Amazon EventBridge event bus as an event destination.

ExampleMetadata:

infused

Example:

bus = events.EventBus.from_event_bus_name(self, "MyEventBus", "default")

appconfig.Extension(self, "MyExtension",
    actions=[
        appconfig.Action(
            action_points=[appconfig.ActionPoint.ON_DEPLOYMENT_START],
            event_destination=appconfig.EventBridgeDestination(bus)
        )
    ]
)
Parameters:

bus (IEventBus) –

Attributes

extension_uri

The URI of the extension event destination.

type

The type of the extension event destination.