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

QueryStringObject

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

Describes the query string parameters that an Amazon Lightsail content delivery network (CDN) distribution to bases caching on.

For the query strings that you specify, your distribution caches separate versions of the specified content based on the query string values in viewer requests.

interface QueryStringObject {
option?: boolean | null;
queryStringsAllowList?: string[] | null;
}

§Properties

§
option?: boolean | null
[src]

Indicates whether the distribution forwards and caches based on query strings.

§
queryStringsAllowList?: string[] | null
[src]

The specific query strings that the distribution forwards to the origin.

Your distribution will cache content based on the specified query strings.

If the option parameter is true, then your distribution forwards all query strings, regardless of what you specify using the queryStringsAllowList parameter.