Module WAFRegional.XssMatchSet

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

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

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

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

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

type properties = {
  1. xss_match_tuples : xss_match_tuple list option;
  2. name : string;
}

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

val make_properties : ?xss_match_tuples:xss_match_tuple list -> name:string -> unit -> properties
val make_field_to_match : type_:string -> ?data:string -> unit -> field_to_match
val make_xss_match_tuple : text_transformation:string -> field_to_match:field_to_match -> unit -> xss_match_tuple
val yojson_of_field_to_match : field_to_match -> Yojson.Safe.t
val yojson_of_xss_match_tuple : xss_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