Module Values.MaintenanceSource

The maintenance setting of a flow.

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

    A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.

    *)
  2. maintenanceDeadline : String_.t option;
    (*

    The Maintenance has to be performed before this deadline in ISO UTC format. Example: 2021-01-30T08:30:00Z.

    *)
  3. maintenanceScheduledDate : String_.t option;
    (*

    A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.

    *)
  4. maintenanceStartHour : String_.t option;
    (*

    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 make : ?maintenanceDay:??? -> ?maintenanceDeadline:??? -> ?maintenanceScheduledDate:??? -> ?maintenanceStartHour:??? -> 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