NumericGreaterThanIfExists
NumericGreaterThanIfExists
NumericGreaterThanIfExists
compares a number in a request to a number in your policy.
To match a request, the context key can be absent, but if present it must match the number in your policy.
You can NOT use policy variables in the value of this operator.
NumericGreaterThanIfExists in an Allow Statement
Click into any of these polices and change them test how they change the result.
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: null |
Then the result is: |
Allowed Assuming no explicit Deny elsewhere |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 101 |
Then the result is: |
Allowed Assuming no explicit Deny elsewhere |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 100 |
Then the result is: |
Not Allowed Statement does not apply |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 99 |
Then the result is: |
Not Allowed Statement does not apply |
NumericGreaterThanIfExists in a Deny Statement
Click into any of these polices and change them test how they change the result.
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: null |
Then the result is: |
Denied |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 101 |
Then the result is: |
Denied |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 100 |
Then the result is: |
Not Denied May be allowed by another statement |
Given the Policy Condition: |
"NumericGreaterThanIfExists": { "s3:max-keys": "100" } |
When the Request Context has: |
s3:max-keys: 99 |
Then the result is: |
Not Denied May be allowed by another statement |