UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

31 lines (30 loc) 1.4 kB
import { CfnResource, Resolvable } from '../../base'; export declare type GraphQLSchema_Type = 'AWS::AppSync::GraphQLSchema'; export declare const GraphQLSchema_Type = "AWS::AppSync::GraphQLSchema"; /** * Resource Type definition for AWS::AppSync::GraphQLSchema {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html} */ export default function GraphQLSchema(props: GraphQLSchema_Properties): CfnResource<GraphQLSchema_Properties>; /** * Resource Type definition for AWS::AppSync::GraphQLSchema {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html} */ export declare type GraphQLSchema_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definition} */ Definition?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-definitions3location} */ DefinitionS3Location?: Resolvable<string>; Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlschema.html#cfn-appsync-graphqlschema-apiid} */ ApiId: Resolvable<string>; };