Show / Hide Table of Contents

Interface IAppSyncEventBridgeDataSourceProps

Properties for an AppSync EventBridge datasource.

Inherited Members
IAppSyncBackedDataSourceProps.ServiceRole
IAppSyncBaseDataSourceProps.Api
IAppSyncBaseDataSourceProps.Description
IAppSyncBaseDataSourceProps.Name
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

IEventBus

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX