Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/function/handler_context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ export interface HandlerContext {
awsRequestId: string
logGroupName: string
logStreamName: string
/**
* A Promise that allows the Lambda function to respond immediately while still waiting
* for the operation to complete asynchronously.
*/
waitUntil: Promise<any>
identity?: { [key: string]: any }
clientContext?: { [key: string]: any }

Expand Down