Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateRouteResponseRequest

import type { UpdateRouteResponseRequest } from "https://aws-api.deno.dev/v0.3/services/apigatewayv2.ts?docs=full";

Updates a RouteResponse.

interface UpdateRouteResponseRequest {
ApiId: string;
ModelSelectionExpression?: string | null;
ResponseModels?: {
[key: string]: string | null | undefined;
}
| null;
ResponseParameters?: {
[key: string]: ParameterConstraints | null | undefined;
}
| null;
RouteId: string;
RouteResponseId: string;
RouteResponseKey?: string | null;
}

§Properties

§
ApiId: string
[src]

The API identifier.

§
ModelSelectionExpression?: string | null
[src]

The model selection expression for the route response. Supported only for WebSocket APIs.

§
ResponseModels?: {
[key: string]: string | null | undefined;
}
| null
[src]

The response models for the route response.

§
ResponseParameters?: {
[key: string]: ParameterConstraints | null | undefined;
}
| null
[src]

The route response parameters.

§
RouteId: string
[src]

The route ID.

§
RouteResponseId: string
[src]

The route response ID.

§
RouteResponseKey?: string | null
[src]

The route response key.