Why can StreamRecords be optional in Amazon DynamoDB streams

Viewed 27
1 Answers

dynamodb will always be present. You are looking at API documentation, which states what parameters are required by you. As this is a read only object, none of the items listed are required.

Contrast that with Get and you will see that key is required as you must pass key parameter in the request.

Related