How can i trigger Lambda 2 based on Lambda 1 status(Only Success) without modifying Lambda1 configuration.

0

How can i trigger Lambda 2 based on Lambda 1 status(Only Success).

demandé il y a 8 mois195 vues
2 réponses
1

Hello.

How about emitting an event to EventBridge at the end of processing?
You can send custom events to EventBridge by using the put_events() API.
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/events/client/put_events.html

Another method is to use StepFunctions to create a configuration that executes a subsequent Lambda when the Lambda succeeds.
https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html

I think the simplest thing to do is to set up Lambda2 to be executed by calling the SNS topic when Lambda1 is successful.
https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations

profile picture
EXPERT
répondu il y a 8 mois
0

If you can't event change the configuration (why not?), you can invoke a state machine instead of Lambda1 and the state machine will invoke Lambda1 and based on the answer it will invoke Lambda2.

Lambda does not emit events by default for success of failure invocations.

profile pictureAWS
EXPERT
Uri
répondu il y a 8 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions