import { APIGatewayEvent, Context, APIGatewayProxyResult } from 'aws-lambda'; export async function handler( event: APIGatewayEvent, context: Context ): Promise { return { statusCode: 200, headers: { 'Content-type': 'application/json' }, body: JSON.stringify({ message: 'Hello, World!' }) }; }