Module Values.LoadBalancerAddressSource

Information about a static IP address for a load balancer.

Sourcetype nonrec t = {
  1. ipAddress : IpAddress.t option;
    (*

    The static IP address.

    *)
  2. allocationId : AllocationId.t option;
    (*

    [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer.

    *)
  3. privateIPv4Address : PrivateIPv4Address.t option;
    (*

    [Network Load Balancers] The private IPv4 address for an internal load balancer.

    *)
  4. iPv6Address : IPv6Address.t option;
    (*

    [Network Load Balancers] The IPv6 address.

    *)
}
Sourceval make : ?ipAddress:??? -> ?allocationId:??? -> ?privateIPv4Address:??? -> ?iPv6Address:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IpAddress.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