Module Values.WindowMaintenanceScheduleSource

Defines a specific time window for maintenance operations.

Sourcetype nonrec t = {
  1. start : SyntheticTimestamp_date_time.t option;
    (*

    The start time of the maintenance window.

    *)
  2. end_ : SyntheticTimestamp_date_time.t option;
    (*

    The end time of the maintenance window.

    *)
  3. scheduledTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time when the maintenance window is scheduled to occur.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> ?scheduledTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of SyntheticTimestamp_date_time.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