AWS Lambda

From wikieduonline
Revision as of 15:54, 11 July 2021 by Welcome (talk | contribs)
Jump to navigation Jump to search

wikipedia:AWS Lambda is an event-driven, serverless computing platform. It is a computing service that runs code in response to Events and automatically manages the computing resources required by that code. It was introduced in November 2014.[1] Other similar solutions in the market are Google Cloud functions, Oracle Cloud Fn and Azure Functions.


Examples

exports.handler = async (event) => {
    const response = {
        statusCode: 200,
        body: JSON.stringify('Hello from Lambda!'),
    };
    return response;
};

Related terms


See also

  • https://en.wikiversity.org/wiki/Cloud_computing/Amazon_Web_Services/AWS_Lambda
  • Advertising: