Module Values_3.SlotDateTimeRangeRequestSource

Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day.

Sourcetype nonrec t = {
  1. earliestTime : Values_0.DateTime.t;
    (*

    The earliest date and time, in UTC, for the Scheduled Instance to start.

    *)
  2. latestTime : Values_0.DateTime.t;
    (*

    The latest date and time, in UTC, for the Scheduled Instance to start. This value must be later than or equal to the earliest date and at most three months in the future.

    *)
}
Sourceval context_ : string
Sourceval make : earliestTime:Values_0.DateTime.t -> latestTime:Values_0.DateTime.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of Values_0.DateTime.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