You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works fine on it's own (without IAM authentication), if you need to access the original event I suggest you use the options argument to amend the incoming req:
exportconsthandler=serverless(app,{request(req,event,context){// Append event & context to the requestreq.lambdaEvent=event;req.lambdaContext=context;},});
Then in your framework, req.lambdaEvent would have the original event for you to access the IAM-specific request context you're after.
AWS Lambda Function URLs are different from regular API Gateway URLs, in that they support IAM authentication, and they are also cheaper to use.
Does this library have support for an AWS Lambda that has a function URL instead of an API Gateway integration?
The text was updated successfully, but these errors were encountered: