Module Values.InvalidationSource

An invalidation.

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

    The identifier for the invalidation request. For example: IDFDVBD632BHDS5.

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

    The status of the invalidation request. When the invalidation batch is finished, the status is Completed.

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

    The date and time the invalidation request was first made.

    *)
  4. invalidationBatch : InvalidationBatch.t option;
    (*

    The current invalidation information for the batch request.

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