Module EC2.IPAM

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

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and ipam_operating_region = {
  1. region_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ipam-ipamoperatingregion.html

type properties = {
  1. description : string option;
  2. tier : string option;
  3. tags : tag list option;
  4. operating_regions : ipam_operating_region list option;
}

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

val make_properties : ?description:string -> ?tier:string -> ?tags:tag list -> ?operating_regions:ipam_operating_region list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_ipam_operating_region : region_name:string -> unit -> ipam_operating_region
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ipam_operating_region : ipam_operating_region -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. default_resource_discovery_association_id : string;
  3. default_resource_discovery_id : string;
  4. ipam_id : string;
  5. resource_discovery_association_count : int;
  6. scope_count : int;
  7. arn : string;
  8. private_default_scope_id : string;
  9. public_default_scope_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string