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

ApiStage

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

API stage name of the associated API stage in a usage plan.

interface ApiStage {
apiId?: string | null;
stage?: string | null;
throttle?: {
[key: string]: ThrottleSettings | null | undefined;
}
| null;
}

§Properties

§
apiId?: string | null
[src]

API Id of the associated API stage in a usage plan.

§
stage?: string | null
[src]

API stage name of the associated API stage in a usage plan.

§
throttle?: {
[key: string]: ThrottleSettings | null | undefined;
}
| null
[src]

Map containing method level throttling information for API stage in a usage plan.