New Feature in town : AWS Lambda function URLs
I am gonna walk you through a new and interesting feature introduced as part of Lamba Function and its ability to publish URLs for your lambda functions directly. BEFORE : Currently, there are several ways to access Lambda Functions you have created. Access Lambda Functions from Inside your AWS Account using IAM user or IAM roles Highlights of this approach: Access to Lambda Function ProgrammaticallyAccount Number with the ARN exposedNeed to Use AWS CLI to accessNo Private/Public URL to execute Lambda Function Access Lambda Functions using Application Load Balancer (ALB) Highlights of this approach: Use Lambda function as backend of Application Load BalancerUse DNS URL to access lambda function URL stays same even if backend Lambda function changes Access Lambda Functions using Amazon API Gateway (ALB) Highlights of this approach:…