Module Values.CacheDetailSource

Cache creation metrics for a specific TTL duration

Sourcetype nonrec t = {
  1. ttl : CacheTTL.t option;
    (*

    TTL duration for these cached tokens

    *)
  2. inputTokens : CacheDetailInputTokensInteger.t option;
    (*

    Number of tokens written to cache with this TTL (cache creation tokens)

    *)
}
Sourceval make : ?ttl:??? -> ?inputTokens:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of CacheDetailInputTokensInteger.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