Difference between revisions of "AWS Lambda"

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
 
Other similar solutions in the market are [[Google Cloud functions]], [[Oracle Cloud Fn]] and [[Azure Functions]].
 
Other similar solutions in the market are [[Google Cloud functions]], [[Oracle Cloud Fn]] and [[Azure Functions]].
  
 +
 +
== Examples ==
 +
<pre>
 +
exports.handler = async (event) => {
 +
    const response = {
 +
        statusCode: 200,
 +
        body: JSON.stringify('Hello from Lambda!'),
 +
    };
 +
    return response;
 +
};
 +
</pre>
  
 
== Related terms ==
 
== Related terms ==

Revision as of 15:54, 11 July 2021

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: