Module Values_2.IpamPoolAllocationSource

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource.

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

    The CIDR for the allocation. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

    *)
  2. ipamPoolAllocationId : Values_1.IpamPoolAllocationId.t option;
    (*

    The ID of an allocation.

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

    A description of the pool allocation.

    *)
  4. resourceId : Values_0.String_.t option;
    (*

    The ID of the resource.

    *)
  5. resourceType : Values_1.IpamPoolAllocationResourceType.t option;
    (*

    The type of the resource.

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

    The Amazon Web Services Region of the resource.

    *)
  7. resourceOwner : Values_0.String_.t option;
    (*

    The owner of the resource.

    *)
}
Sourceval make : ?cidr:??? -> ?ipamPoolAllocationId:??? -> ?description:??? -> ?resourceId:??? -> ?resourceType:??? -> ?resourceRegion:??? -> ?resourceOwner:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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