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

GrpcRouteMatch

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

An object that represents the criteria for determining a request match.

interface GrpcRouteMatch {
metadata?: GrpcRouteMetadata[] | null;
methodName?: string | null;
serviceName?: string | null;
}

§Properties

§
metadata?: GrpcRouteMetadata[] | null
[src]

An object that represents the data to match from the request.

§
methodName?: string | null
[src]

The method name to match from the request. If you specify a name, you must also specify a serviceName.

§
serviceName?: string | null
[src]

The fully qualified domain name for the service to match from the request.