| className |
string |
Choose `RequestHeaderCondition` to match a header from the requesting client to the specified header. |
| name |
array |
Use `name` to check whether the specified header exists. |
| nameWildcard |
boolean |
Whether to interpret `?` and `*` as wildcards in the specified `name`. |
| positiveMatch |
boolean |
__Read-only__ Whether the condition triggers on a match or lack of match. |
| value |
array |
A list of unique header values. Use both `value` and `name` to check whether the requesting client’s header matches the specified headers. |
| valueCase |
boolean |
Whether to consider case when matching header values, `true` for case-sensitive matches. |
| valueWildcard |
boolean |
Whether to interpret `?` and `*` as wildcards in the specified `value`. |