Class: Aws::DAX::Types::Node
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Node
- Includes:
- Structure
- Defined in:
- 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.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 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.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 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.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 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.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 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`.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 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`.
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 |
# File 'lib/aws-sdk-dax/types.rb', line 1034 class Node < Struct.new( :node_id, :endpoint, :node_create_time, :availability_zone, :node_status, :parameter_group_status) SENSITIVE = [] include Aws::Structure end |