Module Values.CustomDNSServerSource

A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.

Sourcetype nonrec t = {
  1. customDNSServerName : ValidHostname.t;
    (*

    The name of the DNS server.

    *)
  2. customDNSServerIP : ValidIPAddress.t;
    (*

    The IP address of the DNS server.

    *)
}
Sourceval context_ : string
Sourceval make : customDNSServerName:ValidHostname.t -> customDNSServerIP:ValidIPAddress.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ValidHostname.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