Module WAFRegional.IPSet

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html

type ip_set_descriptor = {
  1. type_ : string;
  2. value : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html

type properties = {
  1. ip_set_descriptors : ip_set_descriptor list option;
  2. name : string;
}

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

val make_properties : ?ip_set_descriptors:ip_set_descriptor list -> name:string -> unit -> properties
val make_ip_set_descriptor : type_:string -> value:string -> unit -> ip_set_descriptor
val yojson_of_ip_set_descriptor : ip_set_descriptor -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string