Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method.
See https://www.paws-r-sdk.com/docs/redshift_resize_cluster/ for full documentation.
redshift_resize_cluster(
ClusterIdentifier,
ClusterType = NULL,
NodeType = NULL,
NumberOfNodes = NULL,
Classic = NULL,
ReservedNodeId = NULL,
TargetReservedNodeOfferingId = NULL
)
[required] The unique identifier for the cluster to resize.
The new cluster type for the specified cluster.
The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.
The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.
A boolean value indicating whether the resize operation is using the
classic resize process. If you don't provide this parameter or set the
value to false
, the resize type is elastic.
The identifier of the reserved node.
The identifier of the target reserved node offering.