Values.HeaderMatchSourceDescribes the constraints for a header match. Matches incoming requests with rule based on request header value before applying rule action.
type nonrec t = {name : HeaderMatchName.t;The name of the header.
*)match_ : HeaderMatchType.t;The header match type.
*)caseSensitive : Boolean.t option;Indicates whether the match is case sensitive.
*)}val make :
?caseSensitive:??? ->
name:HeaderMatchName.t ->
match_:HeaderMatchType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `String of HeaderMatchName.t
| `Structure of (string * [> `String of HeaderMatchExact.t ]) list ])
list ]