Module Values.EndpointSource

Represents the information required for client programs to connect to the endpoint for a DAX cluster.

Sourcetype nonrec t = {
  1. address : String_.t option;
    (*

    The DNS hostname of the endpoint.

    *)
  2. port : Integer.t option;
    (*

    The port number that applications should use to connect to the endpoint.

    *)
  3. uRL : String_.t option;
    (*

    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.

    *)
}
Sourceval make : ?address:??? -> ?port:??? -> ?uRL:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t