Module Values.InvalidationSummarySource

A summary of an invalidation request.

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

    The unique ID for an invalidation request.

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

    The time that an invalidation request was created.

    *)
  3. status : String_.t option;
    (*

    The status of an invalidation request.

    *)
}
Sourceval make : ?id:??? -> ?createTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `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