2 Answers
- Newest
- Most votes
- Most comments
1
For this you would need to keep a counter record for each item and use DynamoDB Transactions to achieve your use case. For each AlexaID create a record for storing counts of records:
Pk | Sk | Items |
---|---|---|
AlexaId | Counter | 3 |
Then you would use a TransactWrite with a condition for each new write, and also an Update to update the counter.
TransactWrite:
Put - new item
Update - update counter ++
Condition - if counter record Items value < 6
0
There is not a way to have this enforced automatically. You'd have to keep a counter yourself and have your application code ensure requests were rejected that exceeded your limit.
answered 3 years ago
Relevant content
- asked 3 years ago
- asked a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 3 months ago