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

UsagePlanKey

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

Represents a usage plan key to identify a plan customer.

To associate an API stage with a selected API key in a usage plan, you must create a UsagePlanKey resource to represent the selected "ApiKey".

See also: Create and Use Usage Plans

interface UsagePlanKey {
id?: string | null;
name?: string | null;
type?: string | null;
value?: string | null;
}

§Properties

§
id?: string | null
[src]

The Id of a usage plan key.

§
name?: string | null
[src]

The name of a usage plan key.

§
type?: string | null
[src]

The type of a usage plan key. Currently, the valid key type is API_KEY.

§
value?: string | null
[src]

The value of a usage plan key.