AWS Lambda

a woman with green hair looking at the camera

How to do Lambda-Proxy Integrations

Reading Time: 4 minutes Hello Readers!! We are again back with a new topic. In this blog, we will see how to do lambda-proxy integrations. Before this, we will see what is lambda-proxy integrations and why we need them.  What are lambda-proxy integrations? AWS Lambda-proxy integration is a type of integration for Amazon API Gateway that allows a single AWS Lambda function to handle multiple HTTP requests and routes. Continue Reading

young business people working with digital tablet while discussing together in conference room

Using Serverless To Save Up To Weeks Of Development Time

Reading Time: 3 minutes In this article, we will talk about how we will be using serverless to save up to weeks of development time. To demonstrate this, we will be taking an example of a RESTful service which is pretty standard and many projects spend weeks of development time in early stages of the project to set it up. If you take a look at the above diagram, Continue Reading

How To Run Custom Binaries On AWS Lambda? [2 Ways]

Reading Time: 2 minutes When you get into serverless more, you get tempted to know how to run custom binaries on AWS Lambda because AWS Lambda does not support every framework or runtime so you have to create your own makeshift solutions using the currently available runtimes. Before we go on and add our own binaries, we first need to learn about AWS Lambda and how it actually works. Continue Reading

Analyzing data.

How To Put Event Data On AWS Event Bus Using Lambda?

Reading Time: 2 minutes In this article, we will talk about how to put event data on AWS event bus using Lambda. This article will help you adapt serverless architecture as it involves one of the standard core data flow models that involve API Gateway, Lambda, and a data processing service such as AWS EventBridge in our case. Throughout the article, we will be taking the help of AWS Continue Reading

How to Setup S3 Trigger with AWS Lambda ?

Reading Time: 3 minutes What is AWS Lambda? In Aws, we can run code using the computation service Lambda without setting up or maintaining servers. In essence, this suggests that AWS Lambda development may be done with no concern for setting up servers or other infrastructure. When data in an Amazon S3 bucket or an Amazon DynamoDB table changes, for example, your code can be launched in response using Continue Reading

photo of turned on laptop computer

How to make WebSocket API with Amazon API Gateway

Reading Time: 4 minutes We’ll learn how to make Websocket API with API Gateway in this blog. Let’s start with a quick overview of APIs. What is an API? API stands for Application Programming Interface, and it is a software intermediary that allows two applications to communicate with one another. What is a WebSocket API? In API Gateway, a WebSocket API is a set of WebSocket routes that are Continue Reading

data codes through eyeglasses

How to Make a REST API Using API Gateway

Reading Time: 6 minutes We’ll learn how to make a REST API with API Gateway in this blog. Let’s start with a quick overview of APIs. What is an API? API stands for Application Programming Interface, and it is a software intermediary that allows two applications to communicate with one another. What is an AWS API? Amazon API Gateway is a fully managed service that makes it easy for Continue Reading

lambda

How to Schedule a Lambda Function using Amazon EventBridge

Reading Time: 4 minutes Hello Readers! In this blog we will see how to schedule a lambda function using Amazon EventBridge. Before this we will get familiar with AWS EventBridge. We will see how it works and after that we will see its demo. So, let’s start. What is AWS EventBridge? Amazon EventBridge is a serveless eventbus service. An event is something that happened in your application (for example, Continue Reading

How To Send Transactional Emails Using Lambda & Amazon SES?

Reading Time: 4 minutes In this article, we will learn how to send transactional emails using Lambda & Amazon SES. What is Amazon SES? Amazon Simple Email Service (SES) is an email service provided by Amazon which is cost-effective, flexible, and scalable that enables developers to send mails such as transactional emails, marketing emails, or even mass email communications from within an application. Amazon SES provides features such as Continue Reading

Using CodeShip with CodeDeploy

Reading Time: 5 minutes What is CodeShip ? CodeShip is a hosted continuous delivery service that focuses on speed, simplicity and reliability. It is a fast and secure hosted CI service that scales as per user’s needs. CodeShip was founded in 2011, and pretty soon it became one amongst the Saas Continuous Integration and Continuous Delivery leader in the market. CodeShip is now backed by a larger company with Continue Reading

Create AWS Lambda with ease

Reading Time: 3 minutes Hi readers, this is my second blog on AWS lambda, I covered the basics in my previous blogs. Now we will focus on the implementation part. Before starting, please keep a check on these things: Prerequisite Setup your AWS account, click here  Understanding what AWS Lambda is? click here All set let’s start.

A WalkThrough with AWS Lambda

Reading Time: 4 minutes   Serverless Architecture Serverless is an application framework for building a serverless application without having to worry about managing infrastructures. It is based on the principle of third party service (BaaS) and on custom codes which run on a container(FaaS). Serverless architecture doesn’t mean we don’t have a server. With the serverless architecture, we still have a server to run our application, it’s just that Continue Reading