Module EC2.IPAMAllocation

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamallocation.html

type properties = {
  1. description : string option;
  2. cidr : string option;
  3. netmask_length : int option;
  4. ipam_pool_id : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamallocation.html;

val make_properties : ?description:string -> ?cidr:string -> ?netmask_length:int -> ipam_pool_id:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. ipam_pool_allocation_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string