Module WAFRegional.ByteMatchSet

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

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

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

and byte_match_tuple = {
  1. target_string : string option;
  2. target_string_base64 : string option;
  3. positional_constraint : string;
  4. text_transformation : string;
  5. field_to_match : field_to_match;
}

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

type properties = {
  1. byte_match_tuples : byte_match_tuple list option;
  2. name : string;
}

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

val make_properties : ?byte_match_tuples:byte_match_tuple list -> name:string -> unit -> properties
val make_field_to_match : type_:string -> ?data:string -> unit -> field_to_match
val make_byte_match_tuple : ?target_string:string -> ?target_string_base64:string -> positional_constraint:string -> text_transformation:string -> field_to_match:field_to_match -> unit -> byte_match_tuple
val yojson_of_field_to_match : field_to_match -> Yojson.Safe.t
val yojson_of_byte_match_tuple : byte_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