/
Logical Operators
Logical Operators
The following logical operators can be used to combine sub-expressions:
and, &, &&
boolean AND or, |, ||
boolean OR (, )
grouping
Examples:
$Vendor eq "Cisco" and $Type eq "Router"
($Vendor eq "Juniper" and $Type eq "Router")
or ($Vendor eq "Cisco" and $Type in ["Router", "Switch"])
memberOf ["Routing Group”"] and $IPAddress in [10.1.0.0/16, 10.2.3.45]
Related content
Comparison Operators
Comparison Operators
More like this
Script-Filter
Script-Filter
More like this
Using the Expression <Expr> Element
Using the Expression <Expr> Element
More like this
Expression Attributes and Matching
Expression Attributes and Matching
More like this
Expression Attributes and Matching
Expression Attributes and Matching
More like this