AWS - Lambda
What will be the output of this Python Lambda handler?
When invoked with
def lambda_handler(event, context):
return event.get('name', 'unknown')When invoked with
{} (empty dictionary) as event?