AWS Cloud Development Kit (CDK)
Carlo Acebedo2023-01-17T06:29:58+00:00The 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 used to model and provision resources in [...]