Posts tagged "aws-lambda"

18 articles covering aws-lambda — browse the collection below.

Run Custom Build Commands During CDK Synthesis with Code.fromCustomCommand
AWS

Run Custom Build Commands During CDK Synthesis with Code.fromCustomCommand

Learn how to use CDK's Code.fromCustomCommand to run custom build scripts, download artifacts, or use non-standard toolchains like Rust or Go during CDK synthesis.

Read more
Scale CloudWatch Alarms with Metrics Insights Queries
AWS

Scale CloudWatch Alarms with Metrics Insights Queries

Use CloudWatch Metrics Insights to monitor multiple resources by querying their tags.

Read more
Serve Markdown for LLMs and AI Agents Using Amazon CloudFront
AWS

Serve Markdown for LLMs and AI Agents Using Amazon CloudFront

Learn how to serve Markdown to LLM and AI agent clients while keeping HTML for human visitors, using CloudFront Functions, Lambda, and S3 — the AWS equivalent of Cloudflare's 'Markdown for Agents' feature.

Read more
Using Spring Boot On AWS Lambda: Clever or Dumb?
Spring Boot

Using Spring Boot On AWS Lambda: Clever or Dumb?

Should you run Spring Boot on AWS Lambda? Detailed analysis of advantages, disadvantages, cold start impact, and GraalVM alternatives for Java serverless functions.

Read more
Serverless Sending and Receiving E-Mails, the CDK Way
CDK

Serverless Sending and Receiving E-Mails, the CDK Way

Automate email forwarding with AWS SES using CDK constructs. Verify domains, setup receipt rules, and forward emails to Gmail—all with Infrastructure as Code.

Read more
5 Ways To Bundle a Lambda Function Within an AWS CDK Construct
AWS Lambda

5 Ways To Bundle a Lambda Function Within an AWS CDK Construct

5 ways to bundle Lambda functions in CDK constructs: inline code, separate files, pre-build bundling, NodejsFunction, and Serverless App Repository integration.

Read more
Automatically Generate a Nice Looking Serverless REST API Documentation
OpenAPI

Automatically Generate a Nice Looking Serverless REST API Documentation

Generate beautiful REST API documentation from OpenAPI specs using ReDoc, openapi-generator, or swagger-codegen. Automate docs for serverless AWS Lambda APIs.

Read more
Going Serverless - Why and How (2)
Serverless

Going Serverless - Why and How (2)

Serverless best practices: keep functions small, use asynchronous communication, scale responsibly, and manage timeouts with Step Functions. Essential guide for production systems.

Read more
Going Serverless - Why and How (1)
Serverless

Going Serverless - Why and How (1)

Start your serverless journey with this comprehensive guide. Learn why serverless matters, how to use Infrastructure as Code with SAM, and set up automated deployments.

Read more
Caching in AWS Lambda
AWS Lambda

Caching in AWS Lambda

Improve AWS Lambda performance and reduce costs with caching strategies. Compare simple caching, DynamoDB cache, Redis, and ElastiCache for serverless functions.

Read more
Remove old CloudWatch log groups of Lambda functions
CloudWatch

Remove old CloudWatch log groups of Lambda functions

Automatically remove orphaned CloudWatch log groups from deleted Lambda functions. Python script using CloudFormation stack to identify and clean up old logs.

Read more
Conferences

My first time on a bigger stage

Essential lessons from giving a conference talk at Atlas Camp 2018: why storytelling matters, how much preparation time you really need, and presentation techniques that work.

Read more
Shut down CloudFormation stack resources over night using AWS Lambda
AWS

Shut down CloudFormation stack resources over night using AWS Lambda

Save AWS costs by automatically shutting down development stack resources overnight using Lambda functions and CloudFormation parameters. Reduce expenses by 50% or more.

Read more
AWS

Creating Different Environments With AWS CloudFormation

Create separate dev, staging, and production environments with AWS CloudFormation using parameters and deploy scripts. Learn the naming strategy to keep resources organized.

Read more
Java

Use Jersey and Spring in AWS Lambda

Integrate Jersey and Spring Framework in AWS Lambda using aws-serverless-java-container. Complete guide with code examples for building REST APIs on Lambda with Java.

Read more
AWS Lambda

Starter Projects For AWS Lambda Using NodeJS And Java

AWS Lambda starter projects for NodeJS and Java with CloudFormation templates. Get boilerplate code to quickly deploy Lambda functions with API Gateway integration.

Read more
AWS Lambda

Fast AWS Lambda Code Updates And Improved Lambda Logs

Speed up AWS Lambda code updates from 2.5 minutes to 15 seconds with lambda-updater. Plus, easily trace logs across multiple Lambda functions using lambdalogs tool.

Read more
AWS Lambda

5 Things To Consider For Writing A Lambda Function

5 essential tips for writing AWS Lambda functions: choosing a runtime, using CloudFormation, attaching policies correctly, and improving cold starts.

Read more