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

#addressString

The DNS hostname of the endpoint.

Returns:

  • (String)


822
823
824
825
826
827
828
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 822

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.

Returns:

  • (Integer)


822
823
824
825
826
827
828
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 822

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.

Returns:

  • (String)


822
823
824
825
826
827
828
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 822

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