Class: Aws::MemoryDB::Types::Node
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Node
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Represents an individual node within a cluster. Each node runs its own instance of the cluster’s protocol-compliant caching software.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The Availability Zone in which the node resides.
-
#create_time ⇒ Time
The date and time when the node was created.
-
#endpoint ⇒ Types::Endpoint
The hostname for connecting to this node.
-
#name ⇒ String
The node identifier.
-
#status ⇒ String
The status of the service update on the node.
Instance Attribute Details
#availability_zone ⇒ String
The Availability Zone in which the node resides
2143 2144 2145 2146 2147 2148 2149 2150 2151 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2143 class Node < Struct.new( :name, :status, :availability_zone, :create_time, :endpoint) SENSITIVE = [] include Aws::Structure end |
#create_time ⇒ Time
The date and time when the node was created.
2143 2144 2145 2146 2147 2148 2149 2150 2151 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2143 class Node < Struct.new( :name, :status, :availability_zone, :create_time, :endpoint) SENSITIVE = [] include Aws::Structure end |
#endpoint ⇒ Types::Endpoint
The hostname for connecting to this node.
2143 2144 2145 2146 2147 2148 2149 2150 2151 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2143 class Node < Struct.new( :name, :status, :availability_zone, :create_time, :endpoint) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The node identifier. A node name is a numeric identifier (0001, 0002, etc.). The combination of cluster name, shard name and node name uniquely identifies every node used in a customer’s Amazon account.
2143 2144 2145 2146 2147 2148 2149 2150 2151 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2143 class Node < Struct.new( :name, :status, :availability_zone, :create_time, :endpoint) SENSITIVE = [] include Aws::Structure end |