Module Values_2.PublicIpv4PoolSource

Describes an IPv4 address pool.

Sourcetype nonrec t = {
  1. poolId : Values_0.String_.t option;
    (*

    The ID of the address pool.

    *)
  2. description : Values_0.String_.t option;
    (*

    A description of the address pool.

    *)
  3. poolAddressRanges : Values_1.PublicIpv4PoolRangeSet.t option;
    (*

    The address ranges.

    *)
  4. totalAddressCount : Values_0.Integer.t option;
    (*

    The total number of addresses.

    *)
  5. totalAvailableAddressCount : Values_0.Integer.t option;
    (*

    The total number of available addresses.

    *)
  6. networkBorderGroup : Values_0.String_.t option;
    (*

    The name of the location from which the address pool is advertised. A network border group is a unique set of Availability Zones or Local Zones from where Amazon Web Services advertises public IP addresses.

    *)
  7. tags : Values_0.TagList.t option;
    (*

    Any tags for the address pool.

    *)
}
Sourceval make : ?poolId:??? -> ?description:??? -> ?poolAddressRanges:??? -> ?totalAddressCount:??? -> ?totalAvailableAddressCount:??? -> ?networkBorderGroup:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.String_.t ]) list ] list | `String of Values_0.String_.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