Class: Aws::DAX::Types::Endpoint

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dax/types.rb

Overview

Represents the information required for client programs to connect to the endpoint for a DAX cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The DNS hostname of the endpoint.



852
853
854
855
856
857
858
# File 'lib/aws-sdk-dax/types.rb', line 852

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

#portInteger

The port number that applications should use to connect to the endpoint.



852
853
854
855
856
857
858
# File 'lib/aws-sdk-dax/types.rb', line 852

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

#urlString

The URL that applications should use to connect to the endpoint. The default ports are 8111 for the “dax” protocol and 9111 for the “daxs” protocol.



852
853
854
855
856
857
858
# File 'lib/aws-sdk-dax/types.rb', line 852

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