Values.AwsRedshiftClusterPendingModifiedValuesSourceChanges to the Amazon Redshift cluster that are currently pending.
type nonrec t = {automatedSnapshotRetentionPeriod : Integer.t option;The pending or in-progress change to the automated snapshot retention period.
*)clusterIdentifier : NonEmptyString.t option;The pending or in-progress change to the identifier for the cluster.
*)clusterType : NonEmptyString.t option;The pending or in-progress change to the cluster type.
*)clusterVersion : NonEmptyString.t option;The pending or in-progress change to the service version.
*)encryptionType : NonEmptyString.t option;The encryption type for a cluster.
*)enhancedVpcRouting : Boolean.t option;Indicates whether to create the cluster with enhanced VPC routing enabled.
*)maintenanceTrackName : NonEmptyString.t option;The name of the maintenance track that the cluster changes to during the next maintenance window.
*)masterUserPassword : NonEmptyString.t option;The pending or in-progress change to the master user password for the cluster.
*)nodeType : NonEmptyString.t option;The pending or in-progress change to the cluster's node type.
*)numberOfNodes : Integer.t option;The pending or in-progress change to the number of nodes in the cluster.
*)publiclyAccessible : Boolean.t option;The pending or in-progress change to whether the cluster can be connected to from the public network.
*)}val make :
?automatedSnapshotRetentionPeriod:??? ->
?clusterIdentifier:??? ->
?clusterType:??? ->
?clusterVersion:??? ->
?encryptionType:??? ->
?enhancedVpcRouting:??? ->
?maintenanceTrackName:??? ->
?masterUserPassword:??? ->
?nodeType:??? ->
?numberOfNodes:??? ->
?publiclyAccessible:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of Integer.t
| `String of NonEmptyString.t ])
list ]