Module Values_3.DnsServersOptionsModifyStructureSource

Information about the DNS server to be used.

Sourcetype nonrec t = {
  1. customDnsServers : Values_0.ValueStringList.t option;
    (*

    The IPv4 address range, in CIDR notation, of the DNS servers to be used. You can specify up to two DNS servers. Ensure that the DNS servers can be reached by the clients. The specified values overwrite the existing values.

    *)
  2. enabled : Values_0.Boolean.t option;
    (*

    Indicates whether DNS servers should be used. Specify False to delete the existing DNS servers.

    *)
}
Sourceval make : ?customDnsServers:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `List of [> `String of string ] list ]) 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