blog.rajanpanchal.netWhat is Lambda Layers and how to use it with Java runtime?When developing serverless functions, you often need additional dependencies or libraries for the function to work. For Lambda functions in java, you need amazon dependencies of the services used in the function. Then you zip the function and its d...Nov 19, 2020·7 min read
blog.rajanpanchal.netHow to create dynamic content using AWS Lambda?Hello Everyone! Today we are going to see how you can generate dynamic content in Lamdba. We are going to use Java 8, Apache Maven, AWS SDK for Java, Apache Velocity to achieve this. Uses Cases There are several scenarios where you want to create dy...Oct 21, 2020·4 min read
blog.rajanpanchal.netWhat Is IKEA Effect And How To Benefit From It?For those who don't know, IKEA is a Swedish multinational group designs and sells ready-to-assemble furniture, kitchen appliances, home accessories, etc. What is IKEA Effect The IKEA effect is a cognitive bias in which consumers place a disproportio...Oct 6, 2020·3 min read
blog.rajanpanchal.netAWS Serverless Application Model : Guide to writing your first AWS SAM ApplicationToday we are going to see how one can write a serverless application using Serverless Application Model (SAM). First, let's understand what Serverless Application Model is. What is Serverless Application Model? What do you do when you want to create ...Sep 29, 2020·36 min read
blog.rajanpanchal.netREST API using AWS Java SDKIn the previous post, we looked at a simple Lambda handler using the AWS Java SDK. In this post, we're going to implement Rest API with Lambda (using Lambda Proxy Integration). What is Lambda Proxy Integration When a client submits an API request, ...Sep 22, 2020·3 min read