Module Values.StartTimeRangeSource

A time range used to specify when the behavior of an insight or anomaly started.

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

    The start time of the time range.

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

    The end time of 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