aws-lambda AWS Lambda using Python Hello World - Lambda Function

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

This is one of the simplest lambda function. It is equivalent to Hello World program.
To create your first program follow the below mentioned steps.

  1. Login to AWS Console
  2. Click Lambda under compute
  3. Click create a Lambda Function enter image description here
  4. Skip select blueprint section
  5. In configure trigger click on the dotted rectangle enter image description here
  6. Select API Gateway
  7. Fill the required details as in the image. enter image description here API Name is the name of your API you are going to build. Resource Pattern is the URL path which you can invoke your Lambda function. Select the required http method. In our example we choose GET. In AWS staging can be done in different ways like prod,dev ... It will help you to differentiate the functions from prod and dev. For demo purpose lets choose security as Open(Its not recommended in production).Click next
  8. Configure the function as below enter image description here Provide the function name , description of your function and runtime environment. We are choosing python as runtime environment.
  9. Modify the code. enter image description here Here we are printing the aws lambda event in cloudtrail which is free. It is also returning a string.
  10. Provide Lambda function handler and role enter image description here Make sure that the handler name should start with lambda_function.. Also create a new role for execute the lambda function. Select the amount of main memory required for execute your function. Select the default timeout and click next
  11. Click create function
  12. Now your function is ready to execute. Click the link provided by the aws enter image description hereenter image description here When you click the link your lambda function will be executed in the background and you will get output in the browser.


Got any aws-lambda Question?