Class: Aws::DAX::Types::Node
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Node
- Defined in:
- gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb
Overview
Represents an individual node within a DAX cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The Availability Zone (AZ) in which the node has been deployed.
-
#endpoint ⇒ Types::Endpoint
The endpoint for the node, consisting of a DNS name and a port number.
-
#node_create_time ⇒ Time
The date and time (in UNIX epoch format) when the node was launched.
-
#node_id ⇒ String
A system-generated identifier for the node.
-
#node_status ⇒ String
The current status of the node.
-
#parameter_group_status ⇒ String
The status of the parameter group associated with this node.
Instance Attribute Details
#availability_zone ⇒ String
The Availability Zone (AZ) in which the node has been deployed.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |
#endpoint ⇒ Types::Endpoint
The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |
#node_create_time ⇒ Time
The date and time (in UNIX epoch format) when the node was launched.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |
#node_id ⇒ String
A system-generated identifier for the node.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |
#node_status ⇒ String
The current status of the node. For example: available
.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |
#parameter_group_status ⇒ String
The status of the parameter group associated with this node. For
example, in-sync
.
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1159 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |