Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

164
Views
Javascript: How to specify http method with AWS Lambda.invoke()?

From AWS documentation: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Lambda.html#invoke-property

var params = {
   FunctionName: 'STRING_VALUE', /* required */
   ClientContext: 'STRING_VALUE',
   InvocationType: Event | RequestResponse | DryRun,
   LogType: None | Tail,
   Payload: Buffer.from('...') || 'STRING_VALUE',
   Qualifier: 'STRING_VALUE'
};
lambda.invoke(params, function(err, data) {
   if (err) console.log(err, err.stack); // an error occurred
   else     console.log(data);           // successful response
});

How do I specify http method, e.g. GET, POST, PUT, DELETE when calling lambda.invoke()?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

lambda.invoke() invokes the Lambda function - HTTP methods are for invoking Amazon API Gateway routes, not a Lambda function.

A Lambda function just takes in an event.

Either call the Amazon API Gateway endpoint (which then invokes the Lambda), or just directly invoke the Lambda as above.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!