Module Values_2.Ipv6PoolSource

Describes an IPv6 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;
    (*

    The description for the address pool.

    *)
  3. poolCidrBlocks : Values_1.PoolCidrBlocksSet.t option;
    (*

    The CIDR blocks for the address pool.

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

    Any tags for the address pool.

    *)
}
Sourceval make : ?poolId:??? -> ?description:??? -> ?poolCidrBlocks:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `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