Module Values.ModifyClusterMaintenanceMessageSource

Modifies the maintenance settings of a cluster.

Sourcetype nonrec t = {
  1. clusterIdentifier : String_.t;
    (*

    A unique identifier for the cluster.

    *)
  2. deferMaintenance : BooleanOptional.t option;
    (*

    A boolean indicating whether to enable the deferred maintenance window.

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

    A unique identifier for the deferred maintenance window.

    *)
  4. deferMaintenanceStartTime : TStamp.t option;
    (*

    A timestamp indicating the start time for the deferred maintenance window.

    *)
  5. 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.

    *)
  6. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?deferMaintenance:??? -> ?deferMaintenanceIdentifier:??? -> ?deferMaintenanceStartTime:??? -> ?deferMaintenanceEndTime:??? -> ?deferMaintenanceDuration:??? -> clusterIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `String of String_.t | `Timestamp of TStamp.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