Skip to content
Advertisement

Tag: serverless-framework

Lambda path parameters are embedded inside path dictionary

I have some python AWS lambdas which are deployed using serverless framework and I was able to retrieve the path variables using: event.get(“variable”) I am not sure what has changed but now I need to retrieve these path parameters using: event.get(“path”).get(“variable”) I am using lambda integration and my serverless configuration has not changed and looks like: I want to retrieve

Advertisement