I need to make certain assertions in my unit tests about if particular DynamoDB tables were queried/mutated during a request. Is there any way I can intercept/hook-into boto3 calls to DynamoDB or maybe there's some kind of access log so I could read and check it in my tests?
I'm using moto for mocking my unit tests and cannot leverage any real AWS infrastructure in the tests.