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

EndpointType

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

The endpoint type. The valid values are EDGE for edge-optimized API setup, most suitable for mobile applications; REGIONAL for regional API endpoint setup, most suitable for calling from AWS Region; and PRIVATE for private APIs.

type EndpointType =
| "REGIONAL"
| "EDGE"
| "PRIVATE"

§Type

§
"REGIONAL" | "EDGE" | "PRIVATE" | cmnP.UnexpectedEnumValue
[src]