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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2023
2024
2025
2026
2027
2028
# File 'lib/aws-sdk-memorydb/types.rb', line 2023

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

#portInteger

The port number that the engine is listening on.

Returns:

  • (Integer)


2023
2024
2025
2026
2027
2028
# File 'lib/aws-sdk-memorydb/types.rb', line 2023

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