Amazon web services – Best way to update data in DynamoDB via a Lambda
I currently have an Express.js server hosted on a Lambda. I am already able to read/GET data from the table, with app.get("/profile/general", async function (req, res) { const params = { TableName: "users", Key: { id: `${req.user.sub}`, }, }; try…