Class: Aws::DAX::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Endpoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dax/types.rb
Overview
Represents the information required for client programs to connect to the endpoint for a DAX cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ String
The DNS hostname of the endpoint.
-
#port ⇒ Integer
The port number that applications should use to connect to the endpoint.
-
#url ⇒ String
The URL that applications should use to connect to the endpoint.
Instance Attribute Details
#address ⇒ String
The DNS hostname of the endpoint.
822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-dax/types.rb', line 822 class Endpoint < Struct.new( :address, :port, :url) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port number that applications should use to connect to the endpoint.
822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-dax/types.rb', line 822 class Endpoint < Struct.new( :address, :port, :url) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
The URL that applications should use to connect to the endpoint. The default ports are 8111 for the “dax” protocol and 9111 for the “daxs” protocol.
822 823 824 825 826 827 828 |
# File 'lib/aws-sdk-dax/types.rb', line 822 class Endpoint < Struct.new( :address, :port, :url) SENSITIVE = [] include Aws::Structure end |