Class: Aws::ElastiCache::Types::Endpoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb

Overview

Represents the information required for client programs to connect to a cache node. This value is read-only.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

The DNS hostname of the cache node.

Returns:

  • (String)


5005
5006
5007
5008
5009
5010
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5005

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

#portInteger

The port number that the cache engine is listening on.

Returns:

  • (Integer)


5005
5006
5007
5008
5009
5010
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 5005

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