Module Values.MaintenanceScheduleSource

Specifies the maintenance schedule for a DB instance or cluster, defining when maintenance operations such as patching can be performed.

Sourcetype nonrec t = {
  1. timezone : IanaTimezone.t;
    (*

    The IANA timezone identifier for the maintenance window. Format: Region/City or UTC. For example, America/New_York or UTC.

    *)
  2. preferredMaintenanceWindow : MaintenanceWindow.t;
    (*

    The preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM (UTC). Day must be one of: Mon, Tue, Wed, Thu, Fri, Sat, Sun. For example, Sun:02:00-Sun:06:00. Provide an empty string to let the system choose a window.

    *)
}
Sourceval context_ : string
Sourceval make : timezone:IanaTimezone.t -> preferredMaintenanceWindow:MaintenanceWindow.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IanaTimezone.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