""" This lambda invokes when file is created on S3 and it executes batch further batch processing. """ from apple_top_playlists_aggregation.handler import handler from apple_top_playlists_aggregation.logger import get_logger def lambda_handler(event, context): return handler(get_logger(context.aws_request_id))