AWS - Serverless Architecture
Identify the error in this Lambda function triggered by API Gateway:
exports.handler = async (event) => {
return { status: 200, body: 'Success' };
};