WAF.WebACL
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-rules.html
type properties = {
default_action : waf_action;
metric_name : string;
name : string;
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 ]
val create_attributes : string -> attributes