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