Hey @markgarrigan! 
Welcome to The Community 
Looks like you’re using the async function style for Lambda Handlers but still calling a callback function - sort of mixing the two styles of Lambda functions: async or sync. From your code, it looks like your intention is to use the sync version, so I’d just remove the async tag and you should be better off!
Hope that helps!
–
Jon