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

GetGatewayResponsesRequest

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

Gets the "GatewayResponses" collection on the given "RestApi". If an API developer has not added any definitions for gateway responses, the result will be the API Gateway-generated default "GatewayResponses" collection for the supported response types.

interface GetGatewayResponsesRequest {
limit?: number | null;
position?: string | null;
restApiId: string;
}

§Properties

§
limit?: number | null
[src]

The maximum number of returned results per page. The default value is 25 and the maximum value is 500. The "GatewayResponses" collection does not support pagination and the limit does not apply here.

§
position?: string | null
[src]

The current pagination position in the paged result set. The "GatewayResponse" collection does not support pagination and the position does not apply here.

§
restApiId: string
[src]

[Required] The string identifier of the associated "RestApi".