Amazon.Lambda.AspNetCoreServer.Hosting
1.6.0
Prefix Reserved
See the version list below for details.
dotnet add package Amazon.Lambda.AspNetCoreServer.Hosting --version 1.6.0
NuGet\Install-Package Amazon.Lambda.AspNetCoreServer.Hosting -Version 1.6.0
<PackageReference Include="Amazon.Lambda.AspNetCoreServer.Hosting" Version="1.6.0" />
paket add Amazon.Lambda.AspNetCoreServer.Hosting --version 1.6.0
#r "nuget: Amazon.Lambda.AspNetCoreServer.Hosting, 1.6.0"
// Install Amazon.Lambda.AspNetCoreServer.Hosting as a Cake Addin #addin nuget:?package=Amazon.Lambda.AspNetCoreServer.Hosting&version=1.6.0 // Install Amazon.Lambda.AspNetCoreServer.Hosting as a Cake Tool #tool nuget:?package=Amazon.Lambda.AspNetCoreServer.Hosting&version=1.6.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 | Versions 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. |
-
net6.0
- Amazon.Lambda.APIGatewayEvents (>= 2.6.0)
- Amazon.Lambda.AspNetCoreServer (>= 8.1.0)
- Amazon.Lambda.Core (>= 2.1.0)
- Amazon.Lambda.RuntimeSupport (>= 1.8.6)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Amazon.Lambda.AspNetCoreServer.Hosting:
Package | Downloads |
---|---|
Fen.Service
Standardized Service conventions, from the opinions of the Fulfiller Enablement team. |
|
JuegoFramework
Package Description |
|
AHROdata
Package Description |
|
Lambifast
Package Description |
|
AlexaVoxCraft.Lambda.AspNetCoreServer
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.2 | 689 | 11/20/2024 |
1.7.1 | 169,311 | 9/5/2024 |
1.7.0 | 662,948 | 2/16/2024 |
1.6.1 | 290,801 | 11/14/2023 |
1.6.0 | 841,274 | 3/24/2023 |
1.5.1 | 99,653 | 3/1/2023 |
1.5.0 | 232,766 | 12/9/2022 |
1.4.0 | 28,877 | 12/7/2022 |
1.3.1 | 614,417 | 5/27/2022 |
1.3.0 | 88,577 | 5/18/2022 |
1.2.0 | 12,488 | 5/7/2022 |
1.1.0 | 134,043 | 3/15/2022 |
1.0.0 | 67,062 | 11/5/2021 |