Module Values.CachePolicySource

A cache policy. When it's attached to a cache behavior, the cache policy determines the following: The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer. The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache. The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but not include them in the cache key, use OriginRequestPolicy.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique identifier for the cache policy.

    *)
  2. lastModifiedTime : Timestamp.t option;
    (*

    The date and time when the cache policy was last modified.

    *)
  3. cachePolicyConfig : CachePolicyConfig.t option;
    (*

    The cache policy configuration.

    *)
}
Sourceval make : ?id:??? -> ?lastModifiedTime:??? -> ?cachePolicyConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Long of Long.t | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t ] list ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t