Question 60:
An application uses DynamoDB tables for its data store. The application requires performing a write operation on a sequence of items, and roll back and reverse all operations in case of any faulty operation. What is the best method to accomplish this requirement?
Answer options:
A.DynamoDB does not support atomic transactions. Use relational database (such as RDS) that supports atomic transactions. B.Use TransactWriteItems operation. C.Use BatchWriteItem operation. D.Update the application to manage and perform roll-back operations.