Module WAF.SqlInjectionMatchSet

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

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

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

and sql_injection_match_tuple = {
  1. field_to_match : field_to_match;
  2. text_transformation : string;
}

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

type properties = {
  1. name : string;
  2. sql_injection_match_tuples : sql_injection_match_tuple list option;
}

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

val make_properties : name:string -> ?sql_injection_match_tuples:sql_injection_match_tuple list -> unit -> properties
val make_field_to_match : ?data:string -> type_:string -> unit -> field_to_match
val make_sql_injection_match_tuple : field_to_match:field_to_match -> text_transformation:string -> unit -> sql_injection_match_tuple
val yojson_of_field_to_match : field_to_match -> Yojson.Safe.t
val yojson_of_sql_injection_match_tuple : sql_injection_match_tuple -> [> `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