Lambda Functions with Rust and CDK

Introduction This post is a follow-up to the previous post on Lambda Functions with Go and CDK. In this post, we’ll go through deploying a Rust-based AWS Lambda function using the AWS Cloud Development Kit (CDK). We’ll focus on the developer workflow: how to get started, wire up your Rust Lambda, and use CDK to manage your infrastructure as code. If you’re already familiar with Lambda as a service, this guide will help you get productive with Rust and CDK quickly. ...

July 27, 2025 · 7 min · Manuel Martinez

Lambda Functions with Go and CDK

Introduction AWS Lambda is a serverless computing service that lets you run code without provisioning or managing servers. Lambdas are very flexible because you can run them on a schedule, in response to events, or even as an API endpoint that responds to an HTTP request. In this post, we’ll look at how to create a Lambda function using Go and the AWS Cloud Development Kit (CDK) - with a focus on using CDK to speed up the development process and improve operational efficiency. ...

September 23, 2024 · 8 min · Manuel Martinez

VSCode and Tiny Instances over Remote SSH

VSCode is very popular A lot of people like VSCode, 74% of respondents in StackOverflow’s 2022 Developer Survey said that VSCode is the IDE that they’ve used in the past year and also plan to keep using it. Why is VSCode liked so, and what do people like about it is not the focus of the post; but for sure it has to do with its extendable functionality, much of which comes from extensions. ...

April 1, 2023 · 3 min · Manuel Martinez