UNPKG

serverless-offline-msk

Version:

A serverless offline plugin that enables AWS MSK events

8 lines (6 loc) 202 B
import { Handler, MSKEvent } from 'aws-lambda'; export const handler: Handler = async (event: MSKEvent) => { console.log('TRIGGERED EVENT'); console.log(event); console.log('CONSUMED EVENT'); };