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

StageKey

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

A reference to a unique stage identified in the format {restApiId}/{stage}.

interface StageKey {
restApiId?: string | null;
stageName?: string | null;
}

§Properties

§
restApiId?: string | null
[src]

The string identifier of the associated RestApi.

§
stageName?: string | null
[src]

The stage name associated with the stage key.