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

GatewayRouteSpec

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

An object that represents a gateway route specification. Specify one gateway route type.

interface GatewayRouteSpec {
grpcRoute?: GrpcGatewayRoute | null;
http2Route?: HttpGatewayRoute | null;
httpRoute?: HttpGatewayRoute | null;
priority?: number | null;
}

§Properties

§
grpcRoute?: GrpcGatewayRoute | null
[src]

An object that represents the specification of a gRPC gateway route.

§
http2Route?: HttpGatewayRoute | null
[src]

An object that represents the specification of an HTTP/2 gateway route.

§
httpRoute?: HttpGatewayRoute | null
[src]

An object that represents the specification of an HTTP gateway route.

§
priority?: number | null
[src]

The ordering of the gateway routes spec.