Module Values.AddMaintenanceSource

Create a maintenance setting for a flow.

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

    A day of a week when the maintenance will happen.

    *)
  2. maintenanceStartHour : String_.t;
    (*

    UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.

    *)
}
Sourceval context_ : string
Sourceval make : maintenanceDay:MaintenanceDay.t -> maintenanceStartHour:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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