Module WAF.WebACL

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

type waf_action = {
  1. type_ : string;
}

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

and activated_rule = {
  1. action : waf_action option;
  2. priority : int;
  3. rule_id : string;
}

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

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

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

val make_properties : default_action:waf_action -> metric_name:string -> name:string -> ?rules:activated_rule list -> unit -> properties
val make_waf_action : type_:string -> unit -> waf_action
val make_activated_rule : ?action:waf_action -> priority:int -> rule_id:string -> unit -> activated_rule
val yojson_of_waf_action : waf_action -> Yojson.Safe.t
val yojson_of_activated_rule : activated_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