Creating an Infrastructure Project with AWS CDK

Setting up an Infrastructure Project using AWS CDK

  1. Open a terminal in the directory where you want to create the project.

    Terminal

  2. Enter the following command to initialize a new AWS CDK application using Java:

    cdk init app --language java
    

Architect

This workshop will use Java. Alternatively, you can create the project with Python or TypeScript.

  1. Open IntelliJ IDEA and import the project you just created.

Architect