Class EventBridgeDestination
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.appconfig.EventBridgeDestination
- All Implemented Interfaces:
IEventDestination
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:24:52.144Z")
@Stability(Stable)
public class EventBridgeDestination
extends software.amazon.jsii.JsiiObject
implements IEventDestination
Use an Amazon EventBridge event bus as an event destination.
Example:
IEventBus bus = EventBus.fromEventBusName(this, "MyEventBus", "default"); Extension.Builder.create(this, "MyExtension") .actions(List.of( Action.Builder.create() .actionPoints(List.of(ActionPoint.ON_DEPLOYMENT_START)) .eventDestination(new EventBridgeDestination(bus)) .build())) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.appconfig.IEventDestination
IEventDestination.Jsii$Default, IEventDestination.Jsii$Proxy
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
EventBridgeDestination
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
EventBridgeDestination
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe URI of the extension event destination.getType()
The type of the extension event destination.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.services.appconfig.IEventDestination
getPolicyDocument
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
EventBridgeDestination
protected EventBridgeDestination(software.amazon.jsii.JsiiObjectRef objRef) -
EventBridgeDestination
protected EventBridgeDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
EventBridgeDestination
- Parameters:
bus
- This parameter is required.
-
-
Method Details
-
getExtensionUri
The URI of the extension event destination.- Specified by:
getExtensionUri
in interfaceIEventDestination
-
getType
The type of the extension event destination.- Specified by:
getType
in interfaceIEventDestination
-