Module WAFRegional.WebACL

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

type action = {
  1. type_ : string;
}

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

and rule = {
  1. action : action;
  2. priority : int;
  3. rule_id : string;
}

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

type properties = {
  1. metric_name : string;
  2. default_action : action;
  3. rules : rule list option;
  4. name : string;
}

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

val make_properties : metric_name:string -> default_action:action -> ?rules:rule list -> name:string -> unit -> properties
val make_action : type_:string -> unit -> action
val make_rule : action:action -> priority:int -> rule_id:string -> unit -> rule
val yojson_of_action : action -> Yojson.Safe.t
val yojson_of_rule : rule -> [> `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