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)


4986
4987
4988
4989
4990
4991
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 4986

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

#portInteger

The port number that the cache engine is listening on.

Returns:

  • (Integer)


4986
4987
4988
4989
4990
4991
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 4986

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