Module Values.FieldToMatchSource

Specifies a field in the request to redact from WAF logs, such as headers, query parameters, or body content.

Sourcetype nonrec t = {
  1. singleHeader : SingleHeader.t option;
    (*

    Redacts a specific header field by name from WAF logs.

    *)
  2. uriPath : String_.t option;
    (*

    Redacts the URI path from WAF logs.

    *)
  3. queryString : String_.t option;
    (*

    Redacts the entire query string from WAF logs.

    *)
  4. method_ : String_.t option;
    (*

    Redacts the HTTP method from WAF logs.

    *)
}
Sourceval make : ?singleHeader:??? -> ?uriPath:??? -> ?queryString:??? -> ?method_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of SingleHeaderNameString.t ]) list ]) 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