/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::ApiGateway::Model */ export interface AwsApigatewayModel { /** * The content type for the model. */ ContentType?: string; /** * A description that identifies this model. */ Description?: string; /** * A name for the model. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the model name. */ Name?: string; /** * The ID of a REST API with which to associate this model. */ RestApiId: string; /** * The schema to use to transform data to one or more output formats. Specify null ({}) if you don't want to specify a schema. */ Schema?: | { [k: string]: unknown; } | string; }