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

RouteSpec

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

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

interface RouteSpec {
grpcRoute?: GrpcRoute | null;
http2Route?: HttpRoute | null;
httpRoute?: HttpRoute | null;
priority?: number | null;
tcpRoute?: TcpRoute | null;
}

§Properties

§
grpcRoute?: GrpcRoute | null
[src]

An object that represents the specification of a gRPC route.

§
http2Route?: HttpRoute | null
[src]

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

§
httpRoute?: HttpRoute | null
[src]

An object that represents the specification of an HTTP route.

§
priority?: number | null
[src]

The priority for the route. Routes are matched based on the specified value, where 0 is the highest priority.

§
tcpRoute?: TcpRoute | null
[src]

An object that represents the specification of a TCP route.