Module EC2.PrefixList

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

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

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

and entry = {
  1. description : string option;
  2. cidr : string;
}

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

type properties = {
  1. max_entries : int option;
  2. prefix_list_name : string;
  3. entries : entry list option;
  4. address_family : string;
  5. tags : tag list option;
}

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

val make_properties : ?max_entries:int -> prefix_list_name:string -> ?entries:entry list -> address_family:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_entry : ?description:string -> cidr:string -> unit -> entry
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_entry : entry -> [> `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. prefix_list_id : string;
  4. version : int;
  5. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string