Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.62 KB

powershell-programming-model.md

File metadata and controls

25 lines (17 loc) · 1.62 KB

Building Lambda Functions with PowerShell

The following sections explain how common programming patterns and core concepts apply when you author Lambda function code in PowerShell.

.NET Runtimes

Name Identifier Languages
.NET Core 2.1 dotnetcore2.1 C# PowerShell Core 6.0
.NET Core 2.0 dotnetcore2.0 C#
.NET Core 1.0 dotnetcore1.0 C#

Note that Lambda functions in PowerShell require PowerShell Core 6.0. Windows PowerShell isn't supported.

Before you get started, you must first set up a PowerShell development environment. For instructions on how to do this, see Setting Up a PowerShell Development Environment.

To learn about how to use the AWSLambdaPSCore module to download sample PowerShell projects from templates, create PowerShell deployment packages, and deploy PowerShell functions to the AWS Cloud, see Using the AWSLambdaPSCore Module.

Topics