Module WAFRegional.Rule

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.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-rule-predicate.html

type properties = {
  1. metric_name : string;
  2. predicates : predicate list option;
  3. name : string;
}

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

val make_properties : metric_name:string -> ?predicates:predicate list -> 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