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

ResponseHeadersPolicyCustomHeader

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

An HTTP response header name and its value. CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that’s associated with this response headers policy.

interface ResponseHeadersPolicyCustomHeader {
Header: string;
Override: boolean;
Value: string;
}

§Properties

§
Override: boolean
[src]

A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

§
Value: string
[src]

The value for the HTTP response header.