Class: Aws::Redshift::Types::ClusterNode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ClusterNode
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
The identifier of a node in a cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#node_role ⇒ String
Whether the node is a leader node or a compute node.
-
#private_ip_address ⇒ String
The private IP address of a node within a cluster.
-
#public_ip_address ⇒ String
The public IP address of a node within a cluster.
Instance Attribute Details
#node_role ⇒ String
Whether the node is a leader node or a compute node.
1205 1206 1207 1208 1209 1210 1211 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1205 class ClusterNode < Struct.new( :node_role, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end |
#private_ip_address ⇒ String
The private IP address of a node within a cluster.
1205 1206 1207 1208 1209 1210 1211 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1205 class ClusterNode < Struct.new( :node_role, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end |
#public_ip_address ⇒ String
The public IP address of a node within a cluster.
1205 1206 1207 1208 1209 1210 1211 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1205 class ClusterNode < Struct.new( :node_role, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end |