Stéphane GRILLON
Stéphane GRILLON

Reputation: 11884

how to run Langage C code in a AWS Lambda?

I looking for documentation on official AWS: https://aws.amazon.com/lambda/faqs/?nc1=h_ls

I find this:

Q: What languages does AWS Lambda support?

AWS Lambda natively supports Java, Go, PowerShell, Node.js, C#, Python, and Ruby code, and provides a Runtime API which allows you to use any additional programming languages to author your functions. Please read our documentation on using Node.js, Python, Java, Ruby, C#, Go, and PowerShell.

I do not find this documentation API. I want find a simple programme read/write file in langage C. after I will want expose after a API gateway.

Upvotes: 1

Views: 2461

Answers (1)

Marcin
Marcin

Reputation: 238967

There are two solutions to that:

  1. Develop your own custom lambda runtime for that. AWS provides some guides and examples of how to do it for C++ in Introducing the C++ Lambda Runtime

Upvotes: 2

Related Questions