/** *

A complex type that contains information about the query string parameters that you want CloudFront to use for caching for a cache behavior.

*/ export interface _QueryStringCacheKeys { /** *

The number of whitelisted query string parameters for a cache behavior.

*/ Quantity: number; /** *

A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

*/ Items?: Array | Iterable; } export interface _UnmarshalledQueryStringCacheKeys extends _QueryStringCacheKeys { /** *

A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity is 0, you can omit Items.

*/ Items?: Array; }