@aws-amplify/graphql-transformer-core
Version:
A framework to transform from GraphQL SDL to AWS CloudFormation.
10 lines • 459 B
TypeScript
import { BackedDataSourceProps, BaseDataSource } from 'aws-cdk-lib/aws-appsync';
import { Construct } from 'constructs';
export interface SearchableDataSourceProps extends BackedDataSourceProps {
readonly region: string;
readonly endpoint: string;
}
export declare class SearchableDataSource extends BaseDataSource {
constructor(scope: Construct, id: string, props: SearchableDataSourceProps);
}
//# sourceMappingURL=searchable-datasource.d.ts.map