AWS Cloud Development Kit (CDK)
Carlo Acebedo2023-06-22T14:02:45+00:00AWS Cloud Development Kit Cheat Sheet The AWS CDK is an open-source software development framework for defining cloud infrastructure in code and provisioning it through AWS CloudFormation. It provides a high-level object-oriented abstraction on top of AWS CloudFormation that allows you to use pre-built cloud components called constructs. It uses familiar programming languages such as TypeScript, JavaScript, Python, C#, .Net, Java, and Go and deploys everything as CloudFormation stacks. Concepts: Stacks a deployment of AWS resources defined in your CDK app. Each stack is a CloudFormation stack and can contain multiple AWS resources. Constructs: pre-built cloud components that can be [...]