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

AuthorizationType

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

The authorization type. For WebSocket APIs, valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer. For HTTP APIs, valid values are NONE for open access, JWT for using JSON Web Tokens, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer.

type AuthorizationType =
| "NONE"
| "AWS_IAM"
| "CUSTOM"
| "JWT"

§Type

§
"NONE" | "AWS_IAM" | "CUSTOM" | "JWT" | cmnP.UnexpectedEnumValue
[src]