Module Values.EndpointSource

Network information for accessing a cluster or instance. Client programs must specify a valid endpoint to access these Amazon DocumentDB resources.

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

    Specifies the DNS address of the instance.

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

    Specifies the port that the database engine is listening on.

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

    Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

    *)
}
Sourceval make : ?address:??? -> ?port:??? -> ?hostedZoneId:??? -> 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