AWS - API Gateway
Given this Lambda function code triggered by API Gateway, what will be the response body?
exports.handler = async (event) => { return { statusCode: 200, body: JSON.stringify({ message: 'Hello ' + event.queryStringParameters.name }) }; };API Gateway is called with URL: /?name=Alice