Module Values_1.InferenceExperimentScheduleSource

The start and end times of an inference experiment. The maximum duration that you can set for an inference experiment is 30 days.

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

    The timestamp at which the inference experiment started or will start.

    *)
  2. endTime : Values_0.Timestamp.t option;
    (*

    The timestamp at which the inference experiment ended or will end.

    *)
}
Sourceval make : ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of Values_0.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