NumericGreaterThan
NumericGreaterThan
NumericGreaterThan compares a number in a request to a number in your policy.
To match a request, the context key must exist in the request and must match the number in your policy.
You can NOT use policy variables in the value of this operator.
NumericGreaterThan in an Allow Statement
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: null |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 101 |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 100 |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 99 |
| Then the result is: |
| |
NumericGreaterThan in a Deny Statement
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: null |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 101 |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 100 |
| Then the result is: |
| |
| Given the Policy Condition: |
"NumericGreaterThan": {
"s3:max-keys": "100"
} |
| When the Request Context has: |
s3:max-keys: 99 |
| Then the result is: |
| |