STRICT NOT EQUAL
This operator is case sensitive and returns True if the compared expressions are exactly not equal. The full list does not have to match when a value used in an expression exists in a list.
Syntax:
(EXPRESSION) !== (EXPRESSION)
Examples and results:
| Example | Result |
|---|---|
Given that org = "united States"in the access request | resource.org !== "United States" evaluates to True because the operator is case sensitive. |
Given thatorg = "United States" in the access request | resource.org !== "United States" evaluates to False. |
Given that org = "US"in the access request | resource.org !== "United States" evaluates to True. |