Class: Aws::Redshift::Types::ClusterNode

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

Overview

The identifier of a node in a cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#node_roleString

Whether the node is a leader node or a compute node.

Returns:

  • (String)


798
799
800
801
802
803
# File 'lib/aws-sdk-redshift/types.rb', line 798

class ClusterNode < Struct.new(
  :node_role,
  :private_ip_address,
  :public_ip_address)
  include Aws::Structure
end

#private_ip_addressString

The private IP address of a node within a cluster.

Returns:

  • (String)


798
799
800
801
802
803
# File 'lib/aws-sdk-redshift/types.rb', line 798

class ClusterNode < Struct.new(
  :node_role,
  :private_ip_address,
  :public_ip_address)
  include Aws::Structure
end

#public_ip_addressString

The public IP address of a node within a cluster.

Returns:

  • (String)


798
799
800
801
802
803
# File 'lib/aws-sdk-redshift/types.rb', line 798

class ClusterNode < Struct.new(
  :node_role,
  :private_ip_address,
  :public_ip_address)
  include Aws::Structure
end