Skip to main content
Module

x/lambda/mod.ts

A deno runtime for AWS Lambda. Deploy deno via docker, SAM, serverless, or bundle it yourself.
Very Popular
Go to Latest
File
export interface Context { functionName: string; functionVersion: string; // or Number? invokedFunctionArn: string; memoryLimitInMB: string; awsRequestId: string; logGroupName: string; logStreamName: string; identity: undefined; clientContext: undefined; getRemainingTimeInMillis: () => Number;}
// In future this could be an enum with various types of Eventsexport interface Event { [key: string]: any;}