/* 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::GatewayResponse */ export interface AwsApigatewayGatewayresponse { /** * A Cloudformation auto generated ID. */ Id?: string; /** * The identifier of the API. */ RestApiId: string; /** * The type of the Gateway Response. */ ResponseType: string; /** * The HTTP status code for the response. */ StatusCode?: string; /** * The response parameters (paths, query strings, and headers) for the response. */ ResponseParameters?: { /** * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "[a-zA-Z0-9]+". */ [k: string]: string; }; /** * The response templates for the response. */ ResponseTemplates?: { /** * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "[a-zA-Z0-9]+". */ [k: string]: string; }; }