def lambda_handler()

in sam-code/echo_api/echo_json.py [0:0]


def lambda_handler(event, context):    
    print(event)
    return {
        'statusCode': 200,
        'body': json.dumps(event)
    }