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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/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)


2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2115

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)


2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2115

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:



2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2115

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)


2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2115

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)


2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2115

class Node < Struct.new(
  :name,
  :status,
  :availability_zone,
  :create_time,
  :endpoint)
  SENSITIVE = []
  include Aws::Structure
end