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

HttpRouteHeader

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

An object that represents the HTTP header in the request.

interface HttpRouteHeader {
invert?: boolean | null;
match?: HeaderMatchMethod | null;
name: string;
}

§Properties

§
invert?: boolean | null
[src]

Specify True to match anything except the match criteria. The default value is False.

§
match?: HeaderMatchMethod | null
[src]

The HeaderMatchMethod object.

§
name: string
[src]

A name for the HTTP header in the client request that will be matched on.