Module Values.IpAddressUpdateSource

In an UpdateResolverEndpoint request, information about an IP address to update.

Sourcetype nonrec t = {
  1. ipId : ResourceId.t option;
    (*

    Only when removing an IP address from a Resolver endpoint: The ID of the IP address that you want to remove. To get this ID, use GetResolverEndpoint.

    *)
  2. subnetId : SubnetId.t option;
    (*

    The ID of the subnet that includes the IP address that you want to update. To get this ID, use GetResolverEndpoint.

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

    The new IPv4 address.

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

    The new IPv6 address.

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