Syntax to run the update command
UPDATE <"TableName">
SET <column name> = <value>
WHERE <column name> = <value>
e.g.
UPDATE "user"
SET enabled='true'
WHERE id='dynamoDBUser'
Here SET clause is to set the value which you want to set, and WHERE clause is to identify the right row or data from the table.