Module Values.EndTimeRangeSource

A range of time that specifies when anomalous behavior in an anomaly or insight ended.

Sourcetype nonrec t = {
  1. fromTime : Timestamp.t option;
    (*

    The earliest end time in the time range.

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

    The latest end time in the time range.

    *)
}
Sourceval make : ?fromTime:??? -> ?toTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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