Module Values.MaintenanceCreateSettingsSource

Placeholder documentation for MaintenanceCreateSettings

Sourcetype nonrec t = {
  1. maintenanceDay : MaintenanceDay.t option;
    (*

    Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.

    *)
  2. maintenanceStartTime : string option;
    (*

    Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.

    *)
}
Sourceval make : ?maintenanceDay:??? -> ?maintenanceStartTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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