Can you have an async handler in Lambda Python 3.6?
I've made Lambda functions before but not in Python. I know in Javascript Lambda supports the handler function being asynchronous, but I get an error if I try it in Python. Here is the code I am trying to test: async def handler(event, context): print(str(event)) return { 'message' : 'OK' } And this is the error I get: An error occurred during JSON serializa