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

IntegrationType

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

The integration type. The valid value is HTTP for integrating an API method with an HTTP backend; AWS with any AWS service endpoints; MOCK for testing without actually invoking the backend; HTTP_PROXY for integrating with the HTTP proxy integration; AWS_PROXY for integrating with the Lambda proxy integration.

type IntegrationType =
| "HTTP"
| "AWS"
| "MOCK"
| "HTTP_PROXY"
| "AWS_PROXY"

§Type

§
"HTTP" | "AWS" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY" | cmnP.UnexpectedEnumValue
[src]