Class: Aws::MemoryDB::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Endpoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Represents the information required for client programs to connect to the cluster and its nodes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ String
The DNS hostname of the node.
-
#port ⇒ Integer
The port number that the engine is listening on.
Instance Attribute Details
#address ⇒ String
The DNS hostname of the node.
2189 2190 2191 2192 2193 2194 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2189 class Endpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port number that the engine is listening on.
2189 2190 2191 2192 2193 2194 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2189 class Endpoint < Struct.new( :address, :port) SENSITIVE = [] include Aws::Structure end |