Class: Aws::MemoryDB::Types::Node

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#availability_zoneString

The Availability Zone in which the node resides

Returns:

  • (String)


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_timeTime

The date and time when the node was created.

Returns:

  • (Time)


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

#endpointTypes::Endpoint

The hostname for connecting to this node.

Returns:



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

#nameString

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.

Returns:

  • (String)


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

#statusString

The status of the service update on the node

Returns:

  • (String)


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