@altostra/core
Version:
Core library for shared types and logic
16 lines (15 loc) • 583 B
TypeScript
import type { AwsResourceCommon } from "../common";
import type { CloudFormationValue } from "../IntrinsicFunctions";
export declare type RouteResponseType = 'AWS::ApiGatewayV2::RouteResponse';
export interface RouteResponse extends AwsResourceCommon {
Type: RouteResponseType;
Properties: RouteResponseProperties;
}
export interface RouteResponseProperties {
ApiId: CloudFormationValue;
RouteId: CloudFormationValue;
RouteResponseKey: string;
ModelSelectionExpression?: string;
ResponseModels?: Record<string, string>;
ResponseParameters?: object;
}