cdk

Aws Cdk Important Concepts

Intro CDK is an opinionated framework for developing aws infrastructure as code. It is an abstraction on top of AWS Cloudformation that enables developers to write infrastructure as code in their programming language of choice (Typescript, Python, .NET, Java etc.) Getting started npm install -g aws-cdk cdk --version npx npm-check-updates -u Hollo World! App mkdir HelloApp && cd HelloApp cdk init --language typescript set an outDir in tsconfig.json before running cdk diff or deploy.