Values.ModifyClusterMaintenanceMessageSourceModifies the maintenance settings of a cluster.
type nonrec t = {clusterIdentifier : String_.t;A unique identifier for the cluster.
*)deferMaintenance : BooleanOptional.t option;A boolean indicating whether to enable the deferred maintenance window.
*)deferMaintenanceIdentifier : String_.t option;A unique identifier for the deferred maintenance window.
*)deferMaintenanceStartTime : TStamp.t option;A timestamp indicating the start time for the deferred maintenance window.
*)deferMaintenanceEndTime : TStamp.t option;A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.
*)deferMaintenanceDuration : IntegerOptional.t option;An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 60 days or less.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Integer of IntegerOptional.t
| `String of String_.t
| `Timestamp of TStamp.t ])
list ]