I have two lambdas. One makes a change in DynamoDb and the second one is triggered when any change in DynamoDb table is made. It works perfectly. My question is how to give input to the second lambda.
I execute first lambda from AWS Console so I can just make a test there with my desired input. But if my second lambda wants to get some parameters from the first lambda which are completely irrelevant for DynamoDb user so I don't want to write them into table what to do? Is there any option to give parameters to the second lambda?
I was thinking about Step function but I'm not sure how it should work.