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

RouteSettings

import type { RouteSettings } from "https://aws-api.deno.dev/v0.3/services/apigatewayv2.ts?docs=full";

Represents a collection of route settings.

interface RouteSettings {
DataTraceEnabled?: boolean | null;
DetailedMetricsEnabled?: boolean | null;
LoggingLevel?: LoggingLevel | null;
ThrottlingBurstLimit?: number | null;
ThrottlingRateLimit?: number | null;
}

§Properties

§
DataTraceEnabled?: boolean | null
[src]

Specifies whether (true) or not (false) data trace logging is enabled for this route. This property affects the log entries pushed to Amazon CloudWatch Logs. Supported only for WebSocket APIs.

§
DetailedMetricsEnabled?: boolean | null
[src]

Specifies whether detailed metrics are enabled.

§
LoggingLevel?: LoggingLevel | null
[src]

Specifies the logging level for this route: INFO, ERROR, or OFF. This property affects the log entries pushed to Amazon CloudWatch Logs. Supported only for WebSocket APIs.

§
ThrottlingBurstLimit?: number | null
[src]

Specifies the throttling burst limit.

§
ThrottlingRateLimit?: number | null
[src]

Specifies the throttling rate limit.