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 configuration endpoint for a DAX cluster, or to an individual node within the cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The DNS hostname of the endpoint.

Returns:

  • (String)


879
880
881
882
883
# File 'lib/aws-sdk-dax/types.rb', line 879

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

#portInteger

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

Returns:

  • (Integer)


879
880
881
882
883
# File 'lib/aws-sdk-dax/types.rb', line 879

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