You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::ResizeClusterMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ResizeClusterMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  cluster_identifier: "String", # required
  cluster_type: "String",
  node_type: "String",
  number_of_nodes: 1,
  classic: false,
}

Describes a resize cluster operation. For example, a scheduled action to run the ResizeCluster API operation.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#classicBoolean

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.

Returns:

  • (Boolean)

    A boolean value indicating whether the resize operation is using the classic resize process.

#cluster_identifierString

The unique identifier for the cluster to resize.

Returns:

  • (String)

    The unique identifier for the cluster to resize.

#cluster_typeString

The new cluster type for the specified cluster.

Returns:

  • (String)

    The new cluster type for the specified cluster.

#node_typeString

The new node type for the nodes you are adding. If not specified, the cluster\'s current node type is used.

Returns:

  • (String)

    The new node type for the nodes you are adding.

#number_of_nodesInteger

The new number of nodes for the cluster. If not specified, the cluster\'s current number of nodes is used.

Returns:

  • (Integer)

    The new number of nodes for the cluster.