AWS - Lambda
Analyze this AWS Lambda Python function:
If the event does not contain the 'data' key, what will happen?
def lambda_handler(event, context):
return event['data']If the event does not contain the 'data' key, what will happen?
