Pass additional parameters to cron destination

0

I have 5 crons which have separate destination lambdas. All lambdas do same work except they just pass a different parameter to a common downstream. Currently there is no way to pass additional parameter alongside cron so that I can have 1 lambda as destination for 5 crons instead of 5 different ones. Can you add this feature?

2 個答案
1

Hi, I assume you created your cron using an eventbridge rule. If that's the case, and you trigger all 5 lambdas using the exact same cron schedule, and your parameters are fixed, did you try the following?

  • on your eventbridge rule, create 5 targets
  • every target calls your lambda
  • in every target, open the additional settings panel, set "configure target input" to "Constant (json text)", and in the "Specify the constant in JSON" editor, add the parameters you need to pass to your lambda, e.g. {"region": "eu-west-1", "myParam": "paramValue" }
  • in your lambda, read the parameters that you have set in the eventbridge rule using the event input

Example using the ruby language

def lambda_handler(event:, context:)
    symbol_event = JSON.parse(JSON[event], symbolize_names: true)
    puts symbol_event[:region]
end

Hope that's what you're looking for. If not, please let me know what I missed in your case.

profile pictureAWS
Jsc
已回答 2 年前
0

You can configure the payload that will be sent to the targets by specifying a Constant json object. Each target will have a different value.

profile pictureAWS
專家
Uri
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南