UNPKG

cdkdx

Version:

Zero-config CLI for aws cdk development

11 lines (8 loc) 264 B
import type { APIGatewayProxyEvent, APIGatewayProxyResult } from 'aws-lambda'; export const handler = async (event: APIGatewayProxyEvent): Promise<APIGatewayProxyResult> => { console.log(event); return { statusCode: 200, body: 'Hello cdkdx', }; };