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

ThrottleSettings

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

The API request rate limits.

interface ThrottleSettings {
burstLimit?: number | null;
rateLimit?: number | null;
}

§Properties

§
burstLimit?: number | null
[src]

The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.

§
rateLimit?: number | null
[src]

The API target request rate limit.