AWS - Serverless Architecture
In a Lambda function triggered by DynamoDB Streams, how can you ensure that only records with the event type 'MODIFY' are processed, ignoring 'INSERT' and 'REMOVE' events?
record['eventName'] and process only if it equals 'MODIFY'.record['eventName'] == 'MODIFY' before processing each record -> Option C15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions