Module Values.CachePointBlockSource

Defines a section of content to be cached for reuse in subsequent API calls.

Sourcetype nonrec t = {
  1. type_ : CachePointType.t;
    (*

    Specifies the type of cache point within the CachePointBlock.

    *)
  2. ttl : CacheTTL.t option;
    (*

    Optional TTL duration for cache entries. When specified, enables extended TTL caching with the specified duration. When omitted, uses type value for caching behavior.

    *)
}
Sourceval context_ : string
Sourceval make : ?ttl:??? -> type_:CachePointType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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