Class: Aws::MemoryDB::Types::Endpoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb

Overview

Represents the information required for client programs to connect to the cluster and its nodes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The DNS hostname of the node.

Returns:

  • (String)


1842
1843
1844
1845
1846
1847
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1842

class Endpoint < Struct.new(
  :address,
  :port)
  SENSITIVE = []
  include Aws::Structure
end

#portInteger

The port number that the engine is listening on.

Returns:

  • (Integer)


1842
1843
1844
1845
1846
1847
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1842

class Endpoint < Struct.new(
  :address,
  :port)
  SENSITIVE = []
  include Aws::Structure
end