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.4/services/apigateway.ts?docs=full";

Represents a usage plan key to identify a plan customer.

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.