AWS Lambda for New Beginner

Aayush Pandey
6 min readJun 19, 2021

Introduction

When you develop apps, you want them to bring the best user experience. To make magic happen, your app needs a background code that runs in response to events.
But managing the backend hosting and creating backend code requires you to size, provide, and measure multiple servers, manage app updates, use security clips and monitor all of this infrastructure for performance and availability.
Wouldn’t it be nice if you could focus on building better projects without worrying about their infrastructure? That’s where the AWS Lambda comes into play.

What is AWS Lambda?

AWS Lambda is a seamless computer service that allows you to use your code without having to worry about being assigned or managing any server. You can run your own application or back-up service using AWS Lambda with zero administration. Just upload your code to Lambda, and it will use your code, or measure the infrastructure with high availability.
The code you use in AWS Lambda is called the lambda function. Currently, it supports the following programming languages:
1. Java
2. Python
3. C #
4. Node
5. Go
6. PowerShell
7. Ruby

It also provides a runtime API that can be used to perform tasks written in other programming (traditional) languages.
To work with AWS Lambda, there is only one requirement; you must have an AWS account where you can access the AWS management console.
You can call Lambda FaaS (Function-as-a-Service) AWS.

AWS Lambda Features

Below are some of the key features offered by AWS Lambda:
* AWS Lambda easily scopes structure without additional config. It also reduces the workload involved.
* It offers many options such as AWS S3, CloudWatch, DynamoDB, API Gateway, Kinesis, CodeCommit, and many more to start the event.
* You do not need to invest up front. It only pays for the memory used by the lambda function and costs less than the number of applications which is why it costs money.
* AWS Lambda is secure. It uses AWS IAM to define all roles and security policies.
* Provides error tolerance for both coding and operational services. You don’t have to panic about the base line.

How AWS Lambda Works?

  • First, you create a task and add basic details to it, such as the programming language to be used in the task.
  • You then write your code in the lambda editor or upload it in the language of the supported program to the Zip file.
  • Once the lambda code is loaded, the service manages all volume measurements, integration, and infrastructure management.
  • In order to use code, you need to start lambda work with the external AWS service, which may request lambda function. For example, it could be a bucket of S3.
  • In a few seconds, the lambda will be ready to start your work automatically when the event takes place.
  • AWS Lambda uses your code when a trigger event is called. Provides control over and monitors your servers.
  • If your work requires a lot of processing power, you will choose a model that has a lot of processing power and RAM, or if your lambda code only works for two seconds, it will choose the lowest model, which saves you money and time.

So, that’s how AWS Lambda works internally. Let’s create an AWS Lambda Function.

Creating AWS Lambda Function

I will create a simple game using the lambda function on Node.js for this article. I will create a lambda function of rolling dice, generating a random number between 1 and 6, and printing it.

  • Go to the AWS administrative console, and with the Lambda search bar type, click on Lambda.
  • Functions window will appear, click on Create function & go to next step.
  • You will find a variety of options for the task and its meaning. I will select Author from scratch as i have started from scratch.
  • Now, you need to fill some information for this lambda function. Fill out the function name and select the Node.js version, which you want to use for this function.
  • You also need to select a role play. Since I do not have an existing role defined in my AWS account, I will continue to choose to create a new role option. Click on Create Function.
  • You will receive a success statement that the unction got created. Now, click on the Designer window to minimize it.
  • Next Step, the Function coding window.
  • Use the code states below in the editor. You can also upload the code with the help of the zip file, but I am using the internal AWS code editor. Follow me.
  • It is a simple code that takes only a number from 1 to 6 and uses a random math function to generate a random number and print it when the function is called.
exports.handler = async(event)=> 
{
const minimum = 1;
const maximum = 6;
const randomNumber = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;
const output = 'Dice throw result is: ' + randomNumber;
return output;
};
  • Now, You will get a pop up to stop the test event, enter the name of the event, and then click Configure.
  • Now, Press the save button & test.

In the Final Execution report, you will see the output for the function logic we just wrote the code. It prints — Dice throw result is 2.

  • Find and click on detailed execution results button to get the overall summary of this lambda function with the expected or the desired output. Information such as to request-id, duration, billed duration, resources configured, etc. with log output will be also provided.
  • Click on the monitoring tab to visualize cloud view logs and lambda performance at the specified time.
  • When you log into the logs created by CloudWatch, you can view details of what happened during the lambda operation, which was being viewed by CloudWatch.

--

--