Module Values.AwsRedshiftClusterPendingModifiedValuesSource

Changes to the Amazon Redshift cluster that are currently pending.

Sourcetype nonrec t = {
  1. automatedSnapshotRetentionPeriod : Integer.t option;
    (*

    The pending or in-progress change to the automated snapshot retention period.

    *)
  2. clusterIdentifier : NonEmptyString.t option;
    (*

    The pending or in-progress change to the identifier for the cluster.

    *)
  3. clusterType : NonEmptyString.t option;
    (*

    The pending or in-progress change to the cluster type.

    *)
  4. clusterVersion : NonEmptyString.t option;
    (*

    The pending or in-progress change to the service version.

    *)
  5. encryptionType : NonEmptyString.t option;
    (*

    The encryption type for a cluster.

    *)
  6. enhancedVpcRouting : Boolean.t option;
    (*

    Indicates whether to create the cluster with enhanced VPC routing enabled.

    *)
  7. maintenanceTrackName : NonEmptyString.t option;
    (*

    The name of the maintenance track that the cluster changes to during the next maintenance window.

    *)
  8. masterUserPassword : NonEmptyString.t option;
    (*

    The pending or in-progress change to the master user password for the cluster.

    *)
  9. nodeType : NonEmptyString.t option;
    (*

    The pending or in-progress change to the cluster's node type.

    *)
  10. numberOfNodes : Integer.t option;
    (*

    The pending or in-progress change to the number of nodes in the cluster.

    *)
  11. publiclyAccessible : Boolean.t option;
    (*

    The pending or in-progress change to whether the cluster can be connected to from the public network.

    *)
}
Sourceval make : ?automatedSnapshotRetentionPeriod:??? -> ?clusterIdentifier:??? -> ?clusterType:??? -> ?clusterVersion:??? -> ?encryptionType:??? -> ?enhancedVpcRouting:??? -> ?maintenanceTrackName:??? -> ?masterUserPassword:??? -> ?nodeType:??? -> ?numberOfNodes:??? -> ?publiclyAccessible:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of NonEmptyString.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