@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 379 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface GraphQLSchemaProperties {
Definition?: Value<string>;
DefinitionS3Location?: Value<string>;
ApiId: Value<string>;
}
export default class Inner_GraphQLSchema extends ResourceBase<GraphQLSchemaProperties> {
constructor(properties: GraphQLSchemaProperties);
}