Live, Learn, and Lung

Tag: AWS Lambda

  • Deploying AWS Lambda Functions in Different Environments with AWS SAM

    When developing Lambda functions, you may need to verify the behavior of your code in a test environment before deploying it to production. For example, your Lambda function needs to send an email to your client, but you don’t want to disturb your client while still developing the code. In this post, I will show…

  • Configuring AWS Lambda Deployment via AWS SAM

    AWS Lambda, a serverless computing service provided by AWS, executes code in response to events and automatically manages the compute resources required by that code. AWS SAM (Serverless Application Model) is an open-source framework for building serverless applications and provides a simplified way of defining the AWS services needed by your serverless application. This post…