import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface GraphQLSchemaProperties { Definition?: Value; DefinitionS3Location?: Value; ApiId: Value; } export default class GraphQLSchema extends ResourceBase { constructor(properties: GraphQLSchemaProperties); }