Module WAFRegional.RateBasedRule

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

type predicate = {
  1. type_ : string;
  2. data_id : string;
  3. negated : bool;
}

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

type properties = {
  1. metric_name : string;
  2. rate_limit : int;
  3. match_predicates : predicate list option;
  4. rate_key : string;
  5. name : string;
}

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

val make_properties : metric_name:string -> rate_limit:int -> ?match_predicates:predicate list -> rate_key:string -> name:string -> unit -> properties
val make_predicate : type_:string -> data_id:string -> negated:bool -> unit -> predicate
val yojson_of_predicate : predicate -> [> `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