0

I am currently working on a project that is using event-based architecture. I created a lambda function that takes parameters from lambda event and processes it according to logic. We are using a eventbridge to trigger the lambda function daily on a fixed schedule. I wanted to pass this .json file from s3 to eventbridge and that eventbridge should send it to AWS lambda. Any solutions? (I wanted to pass params dynamically by reading .json file)

3
  • this should help stackoverflow.com/a/71553179/13126651 Commented Sep 22, 2022 at 6:45
  • @jatinMehrotra, I think in this question, they are passing static values to lambda. In my case, I wanted to use values dynamically by fetching the data inside .json file and use it in the eventbridge to pass it to lambda Commented Sep 22, 2022 at 7:12
  • Then you may need to use lambda to read from s3 and then pass those json value to other lambda using step functions and scheduling expression ( cron ) inside step functions medium.com/@tturnbull/…, aws.amazon.com/step-functions/… Commented Sep 22, 2022 at 7:23

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.