UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

13 lines (12 loc) 429 B
import { Construct } from 'constructs'; export type CodegenAssetsProps = { modelSchema: string; }; /** * Construct which creates a bucket, and uploads file assets required for codegen to run. * Pointers to these resources are persisted in the stack outputs. */ export declare class CodegenAssets extends Construct { modelSchemaS3Uri: string; constructor(scope: Construct, id: string, props: CodegenAssetsProps); }