Interface IAppSyncEventBridgeDataSourceProps
Properties for an AppSync EventBridge datasource.
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAppSyncEventBridgeDataSourceProps : IAppSyncBackedDataSourceProps, IAppSyncBaseDataSourceProps
Syntax (vb)
Public Interface IAppSyncEventBridgeDataSourceProps Inherits IAppSyncBackedDataSourceProps, IAppSyncBaseDataSourceProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppSync;
using Amazon.CDK.AWS.Events;
using Amazon.CDK.AWS.IAM;
using Amazon.CDK.Interfaces.AppSync;
IApiRef apiRef;
EventBus eventBus;
Role role;
var appSyncEventBridgeDataSourceProps = new AppSyncEventBridgeDataSourceProps {
Api = apiRef,
EventBus = eventBus,
// the properties below are optional
Description = "description",
Name = "name",
ServiceRole = role
};
Synopsis
Properties
| EventBus | The EventBridge EventBus. |
Properties
EventBus
The EventBridge EventBus.
IEventBus EventBus { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated