Interface AppSyncEventBridgeDataSourceProps
- All Superinterfaces:
AppSyncBackedDataSourceProps,AppSyncBaseDataSourceProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppSyncEventBridgeDataSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:09:58.858Z")
@Stability(Stable)
public interface AppSyncEventBridgeDataSourceProps
extends software.amazon.jsii.JsiiSerializable, AppSyncBackedDataSourceProps
Properties for an AppSync EventBridge datasource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appsync.*;
import software.amazon.awscdk.services.events.*;
import software.amazon.awscdk.services.iam.*;
IApi api;
EventBus eventBus;
Role role;
AppSyncEventBridgeDataSourceProps appSyncEventBridgeDataSourceProps = AppSyncEventBridgeDataSourceProps.builder()
.api(api)
.eventBus(eventBus)
// the properties below are optional
.description("description")
.name("name")
.serviceRole(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppSyncEventBridgeDataSourcePropsstatic final classAn implementation forAppSyncEventBridgeDataSourceProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.appsync.AppSyncBackedDataSourceProps
getServiceRoleMethods inherited from interface software.amazon.awscdk.services.appsync.AppSyncBaseDataSourceProps
getApi, getDescription, getNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventBus
The EventBridge EventBus. -
builder
-