is there any way to do ACID transactions using Boto3 (Python library) ?
I want to write an item to multiple tables and make sure the write as been applied to all of the tables, otherwise roll-back. I read the Boto3 documentation and didn't see any mention of transaction or ACID operations.
I looked into this library : http://dynamodb-mapper.readthedocs.io/en/latest/
I've checked out the code, it seems to be using the old boto library and it doesn't seem to be supported anymore.
I know that there's an AWS solution for Transactions: https://aws.amazon.com/blogs/aws/dynamodb-transaction-library/
This is done using Java code. I was wondering if any of you we're able to perform transactions on DynamoDB using Boto3 ?
Thanks