Class: Aws::ElastiCache::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::Endpoint
- Includes:
- Structure
- Defined in:
- 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
-
#address ⇒ String
The DNS hostname of the cache node.
-
#port ⇒ Integer
The port number that the cache engine is listening on.
Instance Attribute Details
#address ⇒ String
The DNS hostname of the cache node.
4991 4992 4993 4994 4995 4996 |
# File 'lib/aws-sdk-elasticache/types.rb', line 4991 class Endpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port number that the cache engine is listening on.
4991 4992 4993 4994 4995 4996 |
# File 'lib/aws-sdk-elasticache/types.rb', line 4991 class Endpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |