Class: Aws::DAX::Types::Endpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Endpoint
- Defined in:
- gems/aws-sdk-dax/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.
852 853 854 855 856 857 858 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 852 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.
852 853 854 855 856 857 858 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 852 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.
852 853 854 855 856 857 858 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 852 class Endpoint < Struct.new( :address, :port, :url) SENSITIVE = [] include Aws::Structure end |