Values.CookieMatchPatternSourceThe filter to use to identify the subset of cookies to inspect in a web request. You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies. Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }
type nonrec t = {all : All.t option;Inspect all cookies.
*)includedCookies : CookieNames.t option;Inspect only the cookies that have a key that matches one of the strings specified here.
*)excludedCookies : CookieNames.t option;Inspect only the cookies whose keys don't match any of the strings specified here.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of SingleCookieName.t ] list
| `Structure of 'a list ])
list ]