Module Values.PendingMaintenanceSource

The scheduled maintenance for a runtime engine.

Sourcetype nonrec t = {
  1. engineVersion : String_.t option;
    (*

    The specific runtime engine that the maintenance schedule applies to.

    *)
  2. schedule : MaintenanceSchedule.t option;
    (*

    The maintenance schedule for the runtime engine version.

    *)
}
Sourceval make : ?engineVersion:??? -> ?schedule:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) 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