Module Values.EndpointSource

Describes a connection endpoint.

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

    The DNS address of the Cluster.

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

    The port that the database engine is listening on.

    *)
  3. vpcEndpoints : VpcEndpointsList.t option;
    (*

    Describes a connection endpoint.

    *)
}
Sourceval make : ?address:??? -> ?port:??? -> ?vpcEndpoints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `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