Module Values.QuerySource

A SQL string of criteria about events that you want to collect in an event data store.

Sourcetype nonrec t = {
  1. queryId : UUID.t option;
    (*

    The ID of a query.

    *)
  2. queryStatus : QueryStatus.t option;
    (*

    The status of the query. This can be QUEUED, RUNNING, FINISHED, FAILED, TIMED_OUT, or CANCELLED.

    *)
  3. creationTime : Date.t option;
    (*

    The creation time of a query.

    *)
}
Sourceval make : ?queryId:??? -> ?queryStatus:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Timestamp of Date.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