alexcasalboni / aws-lambda-power-tuning

AWS Lambda Power Tuning is an open-source tool that can help you visualize and fine-tune the memory/power configuration of Lambda functions. It runs in your own AWS account - powered by AWS Step Functions - and it supports three optimization strategies: cost, speed, and balanced.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I pass query parameter in the input

sumanth712bs opened this issue · comments

Can someone please let me know how should I pass the query parameters in the payload section of the input?

Hi @sumanth712bs!

If you mean the Amazon API Gateway integration, your Lambda payload should look like this:

{
  "queryStringParameters": {
    "myparam": "myvalue"
  }
}