An array of references to processResponse handlers.
An array of references to processRequest handlers.
An array of middleware objects.
The base handler registered with serverless. Returns an async function that handles standard serverless handler arguments. The returned function mounts all middleware and a verb-based handler function based on the request method. Middleware request processors are called first, then the verb-based handler, then middleware response processors. If an error is thrown, it is converted to a response object and sent.
async (evt: APIGatewayEvent, ctx: Context, cb: Callback)
Adds a middleware object to the stack.
Generated using TypeDoc
The base endpoint class implemented by all endpoints.
Endpoint