def lambda_handler(event, context): """ AWS Lambda function handler. :param event: The event data passed to the Lambda function. :param context: The runtime information of the Lambda function. :return: A dictionary with a "statusCode" and "body". """ return { "statusCode": 200, "body": "Hello, World!" }