AWS - Lambda
Given this Python Lambda handler code:
What will be the output if the event is
def lambda_handler(event, context):
return {'message': event['key']}What will be the output if the event is
{'key': 'hello'}?