Module Values.AwsRdsDbInstanceEndpointSource

Specifies the connection endpoint.

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

    Specifies the DNS address of the DB instance.

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

    Specifies the port that the database engine is listening on.

    *)
  3. hostedZoneId : NonEmptyString.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 NonEmptyString.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