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

GetUsagePlanKeysRequest

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

The GET request to get all the usage plan keys representing the API keys added to a specified usage plan.

interface GetUsagePlanKeysRequest {
limit?: number | null;
nameQuery?: string | null;
position?: string | null;
usagePlanId: 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.

§
nameQuery?: string | null
[src]

A query parameter specifying the name of the to-be-returned usage plan keys.

§
position?: string | null
[src]

The current pagination position in the paged result set.

§
usagePlanId: string
[src]

[Required] The Id of the "UsagePlan" resource representing the usage plan containing the to-be-retrieved "UsagePlanKey" resource representing a plan customer.