Module EC2.IPAMResourceDiscovery

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

type ipam_operating_region = {
  1. region_name : string;
}

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

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

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

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

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

val make_properties : ?description:string -> ?tags:tag list -> ?operating_regions:ipam_operating_region list -> unit -> properties
val make_ipam_operating_region : region_name:string -> unit -> ipam_operating_region
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_ipam_operating_region : ipam_operating_region -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. owner_id : string;
  3. state : string;
  4. ipam_resource_discovery_region : string;
  5. ipam_resource_discovery_arn : string;
  6. ipam_resource_discovery_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string