AWS - Lambda
Given this Python Lambda handler code:
What is the output if the event is
def handler(event, context):
return event['value'] * 2What is the output if the event is
{"value": 5}?