DEV Community

Cover image for AWS Lambda Function URLs and API Gateway
Yogesh Sharma
Yogesh Sharma

Posted on

AWS Lambda Function URLs and API Gateway

To construct resilient and scalable microservices, Enterprises are adopting AWS Lambda aka serverless functions. These microservices are composed of a couple of serverless capabilities that put into effect the commercial enterprise logic. Each characteristic is mapped to API endpoints, methods, and assets the usage of offerings inclusive of Amazon API Gateway and ALB.

We must say that API Gateway and Function URLs provide comparable features. But there are a few high-quality suit use instances for each Function URL and API Gateways.
Lambda function URLs permit you to invoke your lambda function from a HTTPS endpoint. This permits you to show your function to packages outdoor of AWS with a HTTP client.
Earlier, customers who desired to expose their lambda function thru HTTP endpoint needed to first create a API gateway endpoint after which companion their lambda feature with it. This required some setup and know how API gateway works and its internals.
AWS Lambda Console

Lambda function URLs make this procedure lots lots easier. You can now fast upload a HTTPS endpoint via way of means of configuring your lambda function from the advanced settings section of the AWS Lambda console OR one can easily use IAC- cloudformation/CDK to configure it.

Lambda Function URLs

Function URLs Endpoint
Function URLs are satisfactory to be used wherein you have to put in force a single-characteristic microservice with a public endpoint that doesn’t require the superior capability of API Gateway, inclusive of request validation, custom authorizers, or caching. For example, whilst you are imposing webhook handlers, shape validators etc. It is likewise the most effective manner to invoke your Lambda features in the course of studies and improvement with out leaving the Lambda console or integrating extra services.

Lambda with API Gateway
Amazon API Gateway Ednpoint
Amazon API Gateway is a service that makes it smooth in an effort to create, publish, and maintain APIs. Use API Gateway to take benefit of abilities like custom authorizers, request validation and transformation, IP whitelist / blacklisting, authorization through integration with Amazon Cognito and so on.

I'd highly suggest to try Lambda Function URLs for some use case to avoid API Gateway configuration and obviously the cost.

Top comments (0)