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

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

#address ⇒ String

The DNS hostname of the endpoint.

Returns:

  • (String)


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

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

#port ⇒ Integer

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

Returns:

  • (Integer)


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

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

#url ⇒ String

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.

Returns:

  • (String)


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

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