Module Values.MaintenanceTrackSource

Defines a maintenance track that determines which Amazon Redshift version to apply during a maintenance window. If the value for MaintenanceTrack is current, the cluster is updated to the most recently certified maintenance release. If the value is trailing, the cluster is updated to the previously certified maintenance release.

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

    The name of the maintenance track. Possible values are current and trailing.

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

    The version number for the cluster release.

    *)
  3. updateTargets : EligibleTracksToUpdateList.t option;
    (*

    An array of UpdateTarget objects to update with the maintenance track.

    *)
}
Sourceval make : ?maintenanceTrackName:??? -> ?databaseVersion:??? -> ?updateTargets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `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