From the course: AWS for Developers: Deploy a WordPress Blog with AWS CDK v2

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Initializing AWS Cloud Development Kit (CDK) project folder

Initializing AWS Cloud Development Kit (CDK) project folder - Amazon Web Services (AWS) Tutorial

From the course: AWS for Developers: Deploy a WordPress Blog with AWS CDK v2

Initializing AWS Cloud Development Kit (CDK) project folder

- [Instructor] All right, before we get our conversation regarding our code, I would like to start by showing you what it looks like to initialize the CDK application. So here we are in my Cloud 9 environment. I'm going to start by creating a folder. As is tradition, I'm going to call it Hello World, and then change into it. I'm just going to type CDK init, and you'll see we have three options, an app, a library, or a sample application. We're going to go with the app by typing CDK init app, and I'll pass the value for language to be Python. All right, let's see what we have. If you notice, there's a folder now up here, and let's see what it looks like. We have Hello World. There's another Hello World folder inside, and it has a class called Hello World Stack. And this is where you would declare your resources. So keep in mind, you can have as many as you need of these stacks. I like to organize them by networking,…

Contents