Is there a way to achieve the following with UpdateItem in dynamo?
Take two attributes from an item and populate a 3rd with a combination of those 2 items?
For example:
{
email: "myemail@gmail.com"
location: "sales"
}
and then update the item to be
{
email: "myemail@gmail.com"
location: "sales"
sortKey: "myemail@gmail.com#sales"
}
I'm using NodeJS and the latest version of the SDK
