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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass ResizeClusterMessage data as a hash:

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

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)


6693
6694
6695
6696
6697
6698
6699
6700
# File 'lib/aws-sdk-redshift/types.rb', line 6693

class ResizeClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :classic)
  include Aws::Structure
end

#cluster_identifierString

The unique identifier for the cluster to resize.

Returns:

  • (String)


6693
6694
6695
6696
6697
6698
6699
6700
# File 'lib/aws-sdk-redshift/types.rb', line 6693

class ResizeClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :classic)
  include Aws::Structure
end

#cluster_typeString

The new cluster type for the specified cluster.

Returns:

  • (String)


6693
6694
6695
6696
6697
6698
6699
6700
# File 'lib/aws-sdk-redshift/types.rb', line 6693

class ResizeClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :classic)
  include Aws::Structure
end

#node_typeString

The new node type for the nodes you are adding.

Returns:

  • (String)


6693
6694
6695
6696
6697
6698
6699
6700
# File 'lib/aws-sdk-redshift/types.rb', line 6693

class ResizeClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :classic)
  include Aws::Structure
end

#number_of_nodesInteger

The new number of nodes for the cluster.

Returns:

  • (Integer)


6693
6694
6695
6696
6697
6698
6699
6700
# File 'lib/aws-sdk-redshift/types.rb', line 6693

class ResizeClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :classic)
  include Aws::Structure
end