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

QuotaSettings

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

Quotas configured for a usage plan.

interface QuotaSettings {
limit?: number | null;
offset?: number | null;
period?: QuotaPeriodType | null;
}

§Properties

§
limit?: number | null
[src]

The target maximum number of requests that can be made in a given time period.

§
offset?: number | null
[src]

The number of requests subtracted from the given limit in the initial time period.

§
period?: QuotaPeriodType | null
[src]

The time period in which the limit applies. Valid values are "DAY", "WEEK" or "MONTH".