package awsappsync import ( "github.com/aws/aws-cdk-go/awscdk/v2/awsevents" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" ) // 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 "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // // var eventBus eventBus // var graphqlApi graphqlApi // var role role // // eventBridgeDataSourceProps := &EventBridgeDataSourceProps{ // Api: graphqlApi, // EventBus: eventBus, // // // the properties below are optional // Description: jsii.String("description"), // Name: jsii.String("name"), // ServiceRole: role, // } // type EventBridgeDataSourceProps struct { // The API to attach this data source to. Api IGraphqlApi `field:"required" json:"api" yaml:"api"` // the description of the data source. Description *string `field:"optional" json:"description" yaml:"description"` // The name of the data source. Name *string `field:"optional" json:"name" yaml:"name"` // The IAM service role to be assumed by AppSync to interact with the data source. ServiceRole awsiam.IRole `field:"optional" json:"serviceRole" yaml:"serviceRole"` // The EventBridge EventBus. EventBus awsevents.IEventBus `field:"required" json:"eventBus" yaml:"eventBus"` }