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

GrpcRouteMetadataMatchMethod

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

An object that represents the match method. Specify one of the match values.

interface GrpcRouteMetadataMatchMethod {
exact?: string | null;
prefix?: string | null;
range?: MatchRange | null;
regex?: string | null;
suffix?: string | null;
}

§Properties

§
exact?: string | null
[src]

The value sent by the client must match the specified value exactly.

§
prefix?: string | null
[src]

The value sent by the client must begin with the specified characters.

§
range?: MatchRange | null
[src]

An object that represents the range of values to match on.

§
regex?: string | null
[src]

The value sent by the client must include the specified characters.

§
suffix?: string | null
[src]

The value sent by the client must end with the specified characters.