Background
I currently have an authorizer that takes a JWT token and decodes it and checks if valid or not to build a policy document, then that is used to grant or deny access to API endpoints.
Currently, the endpoints are using query strings as parameters to grab data.
Problem
I need to make it so that the values for the user and email etc are the ones that come from the decodes JWT Token. How do I pass the decodes values to the input of the other lambda functions?
I am open to suggestions, or links, or at least a point in the right direction.