package awsappsync // Properties for an AppSync dummy 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" // // var graphqlApi graphqlApi // // noneDataSourceProps := &NoneDataSourceProps{ // Api: graphqlApi, // // // the properties below are optional // Description: jsii.String("description"), // Name: jsii.String("name"), // } // type NoneDataSourceProps 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"` }