import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface GatewayResponseProperties { ResponseTemplates?: { [key: string]: Value; }; ResponseParameters?: { [key: string]: Value; }; RestApiId: Value; StatusCode?: Value; ResponseType: Value; } export default class GatewayResponse extends ResourceBase { constructor(properties: GatewayResponseProperties); }