1
I would like to know if anyone else needed to make a change to the recorded data in an AWS Dynamodb table where it is necessary to use the original recorded data and change it.
Example:
I have recorded in a table:
{
"Name": {
"S": "John Doe"
}
}
after the process needs to stay:
{
"Name": {
"S": "John"
}
}
What I do today is a Get
(to get the information), process the data and then a Update
to save.
I know that the Update
already reads and can transform table elements with the SET
, however, I did not reach the conclusion whether within SET
it is possible to take the existing information from the bank and process it within the command itself.