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.4/services/apigateway.ts?docs=full";

The authorizer type. Valid values are TOKEN for a Lambda function using a single authorization token submitted in a custom header, REQUEST for a Lambda function using incoming request parameters, and COGNITO_USER_POOLS for using an Amazon Cognito user pool.

type AuthorizerType =
| "TOKEN"
| "REQUEST"
| "COGNITO_USER_POOLS"

§Type

§
"TOKEN" | "REQUEST" | "COGNITO_USER_POOLS" | cmnP.UnexpectedEnumValue
[src]