# AWS.CDK.PowerShell Module AWS.CDK.PowerShell module simplifies [AWS Cloud Development Kit (AWS CDK)](https://aws.amazon.com/cdk/) development experience for PowerShell developers. The AWS CDK is an open-source software development framework to define your cloud application resources using familiar programming languages. ## Prerequisites - PowerShell 7.0 or later - .NET Core v3.1 or later - [Nuget cli](https://learn.microsoft.com/en-us/nuget/reference/nuget-exe-cli-reference) - Pester 5.0.0 or later (for unit tests) ## Usage ```powershell # Download the module cd Import-Module AWS.CDK.PowerShell # Create a new PowerShell CDK Package New-CdkPackage -Path -Template # Within your template, you can use Import-CdkPackages to import dependencies Import-CdkPackages -CdkDirectory ``` ## Test ```powershell cd .\Invoke-CdkPesterTests -ModulePath -TestPath ```