def lambda_handler()

in lambda-product-providers/main.py [0:0]


def lambda_handler(event, context):

    # Get the payload coming in and process it.  There might be more than one.
    for record in event['Records']:
        process(json.loads(record["body"]))