Class AppSyncEventBridgeDataSource
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.appsync.AppSyncBaseDataSource
software.amazon.awscdk.services.appsync.AppSyncBackedDataSource
software.amazon.awscdk.services.appsync.AppSyncEventBridgeDataSource
- All Implemented Interfaces:
IGrantable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:05.786Z")
@Stability(Stable)
public class AppSyncEventBridgeDataSource
extends AppSyncBackedDataSource
An AppSync datasource backed by EventBridge.
Example:
import software.amazon.awscdk.services.events.*;
EventApi api = EventApi.Builder.create(this, "EventApiEventBridge")
.apiName("EventBridgeEventApi")
.build();
EventBus eventBus = new EventBus(this, "test-bus");
AppSyncEventBridgeDataSource dataSource = api.addEventBridgeDataSource("eventbridgeds", eventBus);
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forAppSyncEventBridgeDataSource.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.iam.IGrantable
IGrantable.Jsii$Default -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAppSyncEventBridgeDataSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedAppSyncEventBridgeDataSource(software.amazon.jsii.JsiiObjectRef objRef) AppSyncEventBridgeDataSource(software.constructs.Construct scope, String id, AppSyncEventBridgeDataSourceProps props) -
Method Summary
Methods inherited from class software.amazon.awscdk.services.appsync.AppSyncBackedDataSource
getGrantPrincipalMethods inherited from class software.amazon.awscdk.services.appsync.AppSyncBaseDataSource
getApi, getName, getResource, getServiceRole, setApi, setServiceRoleMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
AppSyncEventBridgeDataSource
protected AppSyncEventBridgeDataSource(software.amazon.jsii.JsiiObjectRef objRef) -
AppSyncEventBridgeDataSource
protected AppSyncEventBridgeDataSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
AppSyncEventBridgeDataSource
@Stability(Stable) public AppSyncEventBridgeDataSource(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull AppSyncEventBridgeDataSourceProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-