Published on

WTF is AWS CDK (Cloud Development Kit) and why it's awesome 🤩

Authors
Tired of using AWS Console? 🤕
Time to boost your productivity with Cloudash — an AWS desktop client.

Let me start with a quick story.

When I started to learn how to program it was obvious at the time that you need separate languages for frontend and backend. For instance - JavaScript at the front and PHP at the back (which, for the record, is still a valid choice for a web service).

Since then the lines are getting more and more blurry - node.js came to the scene and it allowed us to use JavaScript for BOTH frontend and backend.

The advent of node.js unlocked a huge superpower for JavaScript developers - they could build both part of the stack with a single programming language.

Still, you had to host your application somewhere, you needed a server.

Fast forward a couple of years - we live in 2020, and THE CLOUD is everywhere.

If you were to ask me in the middle of the night "what is the cloud?" I'd probably answer with two things:

"AWS is essentially a synonym for the cloud in 2020 and will rule the cloud world for quite some time"

and

"Why are you in my room in the middle of the night?"

What is AWS Cloud Development Kit

In order to have a working webapp you need three things:

  • frontend
  • backend
  • infrastructure to run the app on (or simply put - at least a server)

Now, imagine that you can define ALL OF THOSE with a SINGLE programming language - TypeScript.

That's what AWS Cloud Development Kit allows us to do.

Let me quote the official docs:

The AWS Cloud Development Kit (AWS CDK) is an open source software development framework to model and provision your cloud application resources using familiar programming languages.

Vast majority of folks who will read this post (yes, that's you my dear reader!) are probably familiar with (or at least - heard of) TypeScript but luckily AWS CDK supports multiple programming languages.

AWS CDK enables you to model application infrastructure using TypeScript, Python, Java, and .NET.

AWS Lambda, S3 buckets, DynamoDB tables, API Gateways - we can define all those resources (and connections between them) with TypeScript and deploy those to the Cloud without even leaving our editor.

In other words - you can build your entire app + infrastructure with a single tool and programming language and provision services all within VS Code, vim or whatever editor you happen to use.

How does it work?

Cloud Development Kit is built on top of CloudFormation which is an AWS service that allows you to describe a stack in AWS using a static file (either YAML or JSON).

In essence - it's going to convert our code written in TypeScript, to JavaScript, which will be then converted to CloudFormation and CloudFormation will be used to deploy our infrastructure.

Sounds complicated, right? Luckily CDK abstracts a lot of things away from us, so we get to focus on solving our problems instead of writing YAML by hand.

Let me show you an example, this is how you define an SNS Topic and a SQS queue with CDK:

const queue = new sqs.Queue(this, "TestCdkQueue", {
  visibilityTimeout: cdk.Duration.seconds(300),
});

const topic = new sns.Topic(this, "TestCdkTopic");

🤯 4 lines of code. 🤯

CDK is not "Infrastructure As Code".

CDK is "Infrastructure IS Code".

CDK Patterns

Since CDK abstracts a lot of things away from us, it's possible to entire architectures defined by other developers from the community.

CDK Patterns is an amazing collection of architecture patterns built with CDK for developers to use. All patterns come in Typescript and Python with the exported CloudFormation also included.

A lambda-based serverless architecture

This architecture can be built and deployed with a single command 🤯

I'd like to learn more, how can I do that?

Check out those resources to learn more:

Tired of switching between AWS console tabs? 😒

Cloudash provides clear access to CloudWatch logs and metrics, to help you make quicker decisions.
Try it for free:

Logs screen