Module Values.SubnetMappingSource

Information about a subnet mapping.

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

    The ID of the subnet.

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

    [Network Load Balancers] The allocation ID of the Elastic IP address for an internet-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.

    *)
  5. sourceNatIpv6Prefix : SourceNatIpv6Prefix.t option;
    (*

    [Network Load Balancers with UDP listeners] The IPv6 prefix to use for source NAT. Specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or auto_assigned to use an IPv6 prefix selected at random from the subnet CIDR block.

    *)
}
Sourceval make : ?subnetId:??? -> ?allocationId:??? -> ?privateIPv4Address:??? -> ?iPv6Address:??? -> ?sourceNatIpv6Prefix:??? -> 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