Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uday-rayala/1571c8beeff8adfa174fe42e83cc5881 to your computer and use it in GitHub Desktop.
Save uday-rayala/1571c8beeff8adfa174fe42e83cc5881 to your computer and use it in GitHub Desktop.
const DynamoDbInsertOrModifyEventsMiddleware = () => (event, context, next) => {
const filteredRecords = event.Records.filter(isInsertOrModifyEvent)
const mutatedEvent = event
mutatedEvent.Records = filteredRecords
return next(mutatedEvent, context)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment