Invoke Lambda Function from one to another using Node JS

I mentioned below code

lambda.invoke({
FunctionName: ‘(Another Lambda Funtion Name)’,
Payload: JSON.stringify({“key”:”value”}) // pass params
}, function(error, data) {
if (error) {
console.log(‘error’, error);
}
if(data.Payload){
console.log(data.Payload)
response = JSON.parse(data.Payload)
console.log(JSON.Stringify(response));
}
});

)

Manivannan Murugavel

Written by

Artificial Intelligence and Data Science

Welcome to a place where words matter. On Medium, smart voices and original ideas take center stage - with no ads in sight. Watch
Follow all the topics you care about, and we’ll deliver the best stories for you to your homepage and inbox. Explore
Get unlimited access to the best stories on Medium — and support writers while you’re at it. Just $5/month. Upgrade