Skip to content

Latest commit

 

History

History
74 lines (61 loc) · 1.93 KB

01-overview.md

File metadata and controls

74 lines (61 loc) · 1.93 KB
Left Home Right

OVERVIEW

What is a CDK ?

AWS Cloud Development Kit (AWS CDK) is an open-source framework for defining cloud infrastructure.

Key Features

  • Imperative to Declarative: Transforms imperative code into declarative CloudFormation templates.
  • CloudFormation Integration: Utilizes CloudFormation for infrastructure creation.
  • Language Support: Core in TypeScript, with JSII enabling compatibility with:
    • TypeScript
    • Python
    • Java
    • C#
    • Go

What is Cloudformation?

CloudFormation is an Infrastructure as Code (IaC) tool, specialized for AWS, automating cloud resource deployment and management. It's similar to Terraform but more AWS-centric.

Key Features:

  • Stacks: Collections of AWS resources managed as a single unit.
  • Templates: Defined in YAML/JSON, using declarative code to specify resource configurations.


Left Home Right