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

HeaderMatchMethod

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

An object that represents the method and value to match with the header value sent in a request. Specify one match method.

interface HeaderMatchMethod {
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.