Amazon.Lambda.AspNetCoreServer.Hosting 1.2.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Amazon.Lambda.AspNetCoreServer.Hosting --version 1.2.0
NuGet\Install-Package Amazon.Lambda.AspNetCoreServer.Hosting -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Amazon.Lambda.AspNetCoreServer.Hosting" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Amazon.Lambda.AspNetCoreServer.Hosting --version 1.2.0
#r "nuget: Amazon.Lambda.AspNetCoreServer.Hosting, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Amazon.Lambda.AspNetCoreServer.Hosting as a Cake Addin
#addin nuget:?package=Amazon.Lambda.AspNetCoreServer.Hosting&version=1.2.0

// Install Amazon.Lambda.AspNetCoreServer.Hosting as a Cake Tool
#tool nuget:?package=Amazon.Lambda.AspNetCoreServer.Hosting&version=1.2.0

Amazon.Lambda.AspNetCoreServer.Hosting

This package allows ASP .NET Core applications written using the minimal api style to be deployed as AWS Lambda functions. This is done by adding a call to AddAWSLambdaHosting to the services collection of the application. This method takes in the LambdaEventSource enum that configures which Lambda event source the Lambda function will be configured for.

The AddAWSLambdaHosting will setup the Amazon.Lambda.AspNetCoreServer package to process the incoming Lambda events as ASP .NET Core requests. It will also initialize Amazon.Lambda.RuntimeSupport package to interact with the Lambda service.

Sample ASP .NET Core application

The code sample below is the typical initilization code for an ASP .NET Core application using the minimal api style. The one difference is the extra line of code calling AddAWSLambdaHosting.

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.

builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

// Register Lambda to replace Kestrel as the web server for the ASP.NET Core application.
// If the application is not running in Lambda then this method will do nothing. 
builder.Services.AddAWSLambdaHosting(LambdaEventSource.HttpApi);

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
    app.UseSwagger();
    app.UseSwaggerUI();
}

app.UseHttpsRedirection();

app.UseAuthorization();

app.MapControllers();

app.Run();

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Amazon.Lambda.AspNetCoreServer.Hosting:

Package Downloads
Fen.Service

Standardized Service conventions, from the opinions of the Fulfiller Enablement team.

AHROdata

Package Description

Lambifast

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Amazon.Lambda.AspNetCoreServer.Hosting:

Repository Stars
aws/aws-lambda-dotnet
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
Elfocrash/aws-videos
aws-samples/serverless-dotnet-demo
Version Downloads Last updated
1.7.0 48,864 2/16/2024
1.6.1 174,608 11/14/2023
1.6.0 614,471 3/24/2023
1.5.1 82,897 3/1/2023
1.5.0 183,126 12/9/2022
1.4.0 25,930 12/7/2022
1.3.1 498,295 5/27/2022
1.3.0 70,317 5/18/2022
1.2.0 11,067 5/7/2022
1.1.0 105,886 3/15/2022
1.0.0 49,792 11/5/2021