Module Values_0.EndpointSource

This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions: CreateDBInstance DescribeDBInstances DeleteDBInstance For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint.

Sourcetype nonrec t = {
  1. address : String_.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 : 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