Module Values.RegexPatternSetSource

Contains one or more regular expressions. WAF assigns an ARN to each RegexPatternSet that you create. To use a set in a rule, you provide the ARN to the Rule statement RegexPatternSetReferenceStatement.

Sourcetype nonrec t = {
  1. name : EntityName.t option;
    (*

    The name of the set. You cannot change the name after you create the set.

    *)
  2. id : EntityId.t option;
    (*

    A unique identifier for the set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.

    *)
  3. aRN : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the entity.

    *)
  4. description : EntityDescription.t option;
    (*

    A description of the set that helps with identification.

    *)
  5. regularExpressionList : RegularExpressionList.t option;
    (*

    The regular expression patterns in the set.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?aRN:??? -> ?description:??? -> ?regularExpressionList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RegexPatternString.t ]) list ] list | `String of EntityName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t