Module WAF.SizeConstraintSet

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

type field_to_match = {
  1. data : string option;
  2. type_ : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint-fieldtomatch.html

and size_constraint = {
  1. comparison_operator : string;
  2. field_to_match : field_to_match;
  3. size : int;
  4. text_transformation : string;
}

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

type properties = {
  1. name : string;
  2. size_constraints : size_constraint list;
}

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

val make_properties : name:string -> size_constraints:size_constraint list -> unit -> properties
val make_field_to_match : ?data:string -> type_:string -> unit -> field_to_match
val make_size_constraint : comparison_operator:string -> field_to_match:field_to_match -> size:int -> text_transformation:string -> unit -> size_constraint
val yojson_of_field_to_match : field_to_match -> Yojson.Safe.t
val yojson_of_size_constraint : size_constraint -> [> `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