interface BaseDataSourceProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppSync.BaseDataSourceProps |
Java | software.amazon.awscdk.services.appsync.BaseDataSourceProps |
Python | aws_cdk.aws_appsync.BaseDataSourceProps |
TypeScript (source) | @aws-cdk/aws-appsync » BaseDataSourceProps |
Base properties for an AppSync datasource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appsync from '@aws-cdk/aws-appsync';
declare const graphqlApi: appsync.GraphqlApi;
const baseDataSourceProps: appsync.BaseDataSourceProps = {
api: graphqlApi,
// the properties below are optional
description: 'description',
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
api | IGraphql | The API to attach this data source to. |
description? | string | the description of the data source. |
name? | string | The name of the data source. |
api
Type:
IGraphql
The API to attach this data source to.
description?
Type:
string
(optional, default: None)
the description of the data source.
name?
Type:
string
(optional, default: id of data source)
The name of the data source.