Julissa Rodriguezcodeanding.com·Feb 1, 2025How to Use Prisma as a Layer in AWS Lambda with AWS SAMHello everyone! Are you using AWS SAM and haven't tried Prisma yet? After working with Prisma for a while, I can't imagine going back to working without its type safety. If you're interested in adding it to your Lambda functions, I'll show you how to...1 like·28 readsAWS
Raul Naupariblog.raulnq.com·Jan 2, 2025Safe AWS Lambda Deployments with AWS SAMHaving the right rollout strategy is crucial, depending on the criticality and needs of our applications. This applies whether we are developing a server-based or serverless application. With that in mind, AWS Lambda provides a set of features to hel...aws lambda
Daniele Frascadfrasca.hashnode.dev·Oct 29, 2024Parameter Management at Scale: How Multi-Region Configurations Saved My ApplicationIn this post, I want to share a story about how significant downtime could have impacted the application if I hadn't used a multi-region setup. In the last few years, I have undertaken the multi-region road for all my applications. I am leading a new...AWS
David Nguyeneplus.dev·Oct 17, 2024Serverless Architectures on AWS - Week 1 QuizWeek 1: Automation and Authentication This week, you explore tools and practices that can help you automate tasks that you do in AWS. First, you learn about AWS CloudFormation so you can automate the creation of your infrastructure. Then, you learn a...Serverless ArchitecturesServerless Architectures on AWS - Week 1 Quiz
Thalles Lossurdosocraticprogrammer.hashnode.dev·Jul 10, 2024Deploying an AWS Lambda using AWS SAMWhen we want to create a new serverless function using the Amazon Web Services ecosystem, specifically the AWS Lambda service, we need to be concerned with code management: packaging by compressing files, using a Docker image, etc., in addition to de...1 likeAWS
Raul Naupariblog.raulnq.com·Mar 6, 2024AWS SAM: Provisioning AWS AppSync with Amazon RDS Data SourceAWS AppSync now supports Aurora Serverless v2 and Aurora provisioned clusters as data sources. However, the DataSource property within the AWS::Serverless::GraphQLApi resource of AWS SAM doesn't yet support RDS. Until an update from the AWS SAM team ...224 readsrds
Raul Naupariblog.raulnq.com·Jan 30, 2024Creating an Amazon Aurora Serverless v2 Database Using AWS SAMAmazon Aurora Serverless v2 has been available for a while and has proven to be a cost-effective option for certain types of workloads. AWS SAM, as an extension of CloudFormation, can be used to create resources beyond Lambda functions, such as datab...7 likes·225 readsAWS
Navya Anavyadevops.hashnode.dev·Jan 26, 2024Introducing AWS SAM: Streamlining Serverless DevelopmentIntroduction: In the ever-evolving landscape of cloud computing, serverless architecture has emerged as a transformative paradigm, enabling developers to focus on code rather than infrastructure. At the forefront of this revolution stands the AWS Ser...sam cli
Raul Naupariblog.raulnq.com·Aug 30, 2023Running AWS Lambda Functions Locally Using LocalStackIn a previous article, Testing AWS Lambda Functions Locally Using SAM. We discussed how to test Lambda functions on our local machines, simulating triggers from other services. While the AWS SAM local command effectively achieves this goal, one more ...10 likes·950 readsAWS Lambda.NET
Raul Naupariblog.raulnq.com·Aug 21, 2023Testing AWS Lambda Functions Locally Using SAMTesting AWS Lambda functions locally can be a crucial step in the development process, as it allows developers to identify and resolve issues before deploying their code to the cloud. In this regard, AWS SAM provides a method for testing our API call...139 readsAWS Lambda.NET