@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
13 lines (12 loc) • 482 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, MapOf } from "../../data-types";
export interface GatewayResponseProperties {
ResponseParameters?: MapOf<Value<string>>;
ResponseTemplates?: MapOf<Value<string>>;
ResponseType: Value<string>;
RestApiId: Value<string>;
StatusCode?: Value<string>;
}
export default class Inner_GatewayResponse extends ResourceBase<GatewayResponseProperties> {
constructor(properties: GatewayResponseProperties);
}