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

HTTPHeader

import type { HTTPHeader } from "https://aws-api.deno.dev/v0.4/services/wafv2.ts?docs=full";

Part of the response from "GetSampledRequests". This is a complex type that appears as Headers in the response syntax. HTTPHeader contains the names and values of all of the headers that appear in one of the web requests.

interface HTTPHeader {
Name?: string | null;
Value?: string | null;
}

§Properties

§
Name?: string | null
[src]

The name of the HTTP header.

§
Value?: string | null
[src]

The value of the HTTP header.