I\'m trying to update an Item in my Dynamodb Table +Users+. I have tried many different ways but I always received the same error message:
The provided k
I was doing BatchGetItem, then streamed it to BatchWriteItem (Delete). DeleteItem didn't like it got all attributes from the object instead of only partition and sort key.
BatchGetItem
BatchWriteItem
DeleteItem
Gathering all answers: