I am trying to do a simple event driven process utilizing AWS lambda and step functions.
When a user clicks a button in react app, I want it to trigger my AWS lambda function. My lambda function uses google sheets to configure a JSON. I am just trying to sync click event to trigger lambda function.
Not sure if the solution is an API Gateway, which seems unnecessary if I'm just trying to trigger a lambda from a web event and not read any data. Eventually, based on who is clicking the button (after login), a different lambda path is taken.