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

UsagePlan

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

Represents a usage plan used to specify who can assess associated API stages. Optionally, target request rate and quota limits can be set. In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs. Consider using Amazon Web Services Budgets to monitor costs and WAF to manage API requests.

interface UsagePlan {
apiStages?: ApiStage[] | null;
description?: string | null;
id?: string | null;
name?: string | null;
productCode?: string | null;
quota?: QuotaSettings | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
throttle?: ThrottleSettings | null;
}

§Properties

§
apiStages?: ApiStage[] | null
[src]

The associated API stages of a usage plan.

§
description?: string | null
[src]

The description of a usage plan.

§
id?: string | null
[src]

The identifier of a UsagePlan resource.

§
name?: string | null
[src]

The name of a usage plan.

§
productCode?: string | null
[src]

The AWS Markeplace product identifier to associate with the usage plan as a SaaS product on AWS Marketplace.

§
quota?: QuotaSettings | null
[src]

The target maximum number of permitted requests per a given unit time interval.

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

The collection of tags. Each tag element is associated with a given resource.

§
throttle?: ThrottleSettings | null
[src]

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