def lambda_handler()

in lambda_function.py [0:0]


def lambda_handler(event, context):
    # resolve the configuration from the sources required
    config_sources = [event, os.environ]
    redshift_monitoring.monitor_cluster(config_sources)
    return 'Finished'