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

GrpcMetadataMatchMethod

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

An object representing the method header to be matched.

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

§Properties

§
exact?: string | null
[src]

The exact method header to be matched on.

§
prefix?: string | null
[src]

The specified beginning characters of the method header to be matched on.

§
range?: MatchRange | null
[src]
§
regex?: string | null
[src]

The regex used to match the method header.

§
suffix?: string | null
[src]

The specified ending characters of the method header to match on.