AWS - API Gateway
What will be the HTTP status code returned by this Lambda function integrated with API Gateway?
exports.handler = async () => { return { statusCode: 404, body: 'Not Found' }; };