Module Values.IpamConfigSource

The configuration IPAM settings that includes the quantity of CIDR configurations and the list of IPAM CIDR configurations.

Sourcetype nonrec t = {
  1. quantity : Integer.t option;
    (*

    The number of IPAM CIDR configurations in the IpamCidrConfigs list.

    *)
  2. ipamCidrConfigs : IpamCidrConfigList.t option;
    (*

    A list of IPAM CIDR configurations that define the IP address ranges, IPAM pools, and associated Anycast IP addresses.

    *)
}
Sourceval make : ?quantity:??? -> ?ipamCidrConfigs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) 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