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

GetResourcesRequest

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

Request to list information about a collection of resources.

interface GetResourcesRequest {
embed?: string[] | null;
limit?: number | null;
position?: string | null;
restApiId: string;
}

§Properties

§
embed?: string[] | null
[src]

A query parameter used to retrieve the specified resources embedded in the returned "Resources" resource in the response. This embed parameter value is a list of comma-separated strings. Currently, the request supports only retrieval of the embedded "Method" resources this way. The query parameter value must be a single-valued list and contain the "methods" string. For example, GET /restapis/{restapi_id}/resources?embed=methods.

§
limit?: number | null
[src]

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

§
position?: string | null
[src]

The current pagination position in the paged result set.

§
restApiId: string
[src]

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