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

AuthorizerType

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

The authorizer type. Specify REQUEST for a Lambda function using incoming request parameters. Specify JWT to use JSON Web Tokens (supported only for HTTP APIs).

type AuthorizerType = "REQUEST" | "JWT" | cmnP.UnexpectedEnumValue;

§Type