Module Values.IpAddressRequestSource

In a CreateResolverEndpoint request, the IP address that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). IpAddressRequest also includes the ID of the subnet that contains the IP address.

Sourcetype nonrec t = {
  1. subnetId : SubnetId.t;
    (*

    The ID of the subnet that contains the IP address.

    *)
  2. ip : Ip.t option;
    (*

    The IPv4 address that you want to use for DNS queries.

    *)
  3. ipv6 : Ipv6.t option;
    (*

    The IPv6 address that you want to use for DNS queries.

    *)
}
Sourceval context_ : string
Sourceval make : ?ip:??? -> ?ipv6:??? -> subnetId:SubnetId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SubnetId.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