arc.tables.update
Respond to data being updated in a DynamoDB table
var arc = require('@architect/functions')
function handler(record, callback) {
console.log(JSON.stringify(record, null, 2))
callback()
}
exports.handler = arc.tables.update(handler)