Amazon.Lambda.APIGatewayEvents
2.7.0
dotnet add package Amazon.Lambda.APIGatewayEvents --version 2.7.0
NuGet\Install-Package Amazon.Lambda.APIGatewayEvents -Version 2.7.0
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
paket add Amazon.Lambda.APIGatewayEvents --version 2.7.0
#r "nuget: Amazon.Lambda.APIGatewayEvents, 2.7.0"
// Install Amazon.Lambda.APIGatewayEvents as a Cake Addin
#addin nuget:?package=Amazon.Lambda.APIGatewayEvents&version=2.7.0
// Install Amazon.Lambda.APIGatewayEvents as a Cake Tool
#tool nuget:?package=Amazon.Lambda.APIGatewayEvents&version=2.7.0
Amazon.Lambda.APIGatewayEvents
This package contains classes that can be used as input types for Lambda functions that process Amazon API Gateway events.
API Gateway events consist of a request that was routed to a Lambda function by API Gateway. When this happens, API Gateway expects the result of the function to be the response that API Gateway should respond with. To see a more detailed example of this, take a look at the Amazon.Lambda.AspNetCoreServer README.md file.
Classes
Class | Description |
---|---|
APIGatewayProxyRequest | Represents proxy request coming from REST API, HTTP API payload format 1.0 or WebSocket API. |
APIGatewayProxyResponse | The return object for functions handling requests for REST API, HTTP API payload format 1.0 or WebSocket API. |
APIGatewayHttpApiV2ProxyRequest | Represents proxy request coming from HTTP API payload format 2.0. |
APIGatewayHttpApiV2ProxyResponse | The return object for functions handling requests for HTTP API payload format 2.0. |
Sample Functions
The following is a sample class and Lambda function that receives Amazon API Gateway event record data as an input, writes some of the record data to CloudWatch Logs, and responds with a 200 status and the same body as the request. (Note that by default anything written to Console will be logged as CloudWatch Logs events.)
Function handler
public class Function
{
public APIGatewayProxyResponse Handler(APIGatewayProxyRequest apigProxyEvent)
{
Console.WriteLine($"Processing request data for request {apigProxyEvent.RequestContext.RequestId}.");
Console.WriteLine($"Body size = {apigProxyEvent.Body.Length}.");
var headerNames = string.Join(", ", apigProxyEvent.Headers.Keys);
Console.WriteLine($"Specified headers = {headerNames}.");
return new APIGatewayProxyResponse
{
Body = apigProxyEvent.Body,
StatusCode = 200,
};
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 is compatible. net8.0-android 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.1)
-
net8.0
- No dependencies.
NuGet packages (56)
Showing the top 5 NuGet packages that depend on Amazon.Lambda.APIGatewayEvents:
Package | Downloads |
---|---|
Amazon.Lambda.AspNetCoreServer
Amazon.Lambda.AspNetCoreServer makes it easy to run ASP.NET Core Web API applications as AWS Lambda functions. |
|
Amazon.Lambda.AspNetCoreServer.Hosting
Package for running ASP.NET Core applications using the Minimal API style as a AWS Lambda function. |
|
Epsagon.Dotnet.Instrumentation
Package Description |
|
Bisque.Aws
Tool to generate AWS CloudFormation json templates for Amazon AWS CloudFormation |
|
Xerris.DotNet.Core.Aws
Package Description |
GitHub repositories (11)
Showing the top 5 popular GitHub repositories that depend on Amazon.Lambda.APIGatewayEvents:
Repository | Stars |
---|---|
aws/aws-lambda-dotnet
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
|
|
DataDog/dd-trace-dotnet
.NET Library for Datadog APM
|
|
aws/aws-extensions-for-dotnet-cli
Extensions to the dotnet CLI to simplify the process of building and publishing .NET Core applications to AWS services
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
open-telemetry/opentelemetry-dotnet-contrib
This repository contains set of components extending functionality of the OpenTelemetry .NET SDK. Instrumentation libraries, exporters, and other components can find their home here.
|
Version | Downloads | Last updated |
---|---|---|
2.7.0 | 84,689 | 10/26/2023 |
2.6.0 | 2,720,965 | 2/13/2023 |
2.5.0 | 2,611,073 | 6/28/2022 |
2.4.1 | 2,972,529 | 5/3/2022 |
2.4.0 | 7,424,493 | 12/4/2020 |
2.3.0 | 1,099,717 | 10/21/2020 |
2.2.0 | 365,301 | 9/30/2020 |
2.1.0 | 2,805,641 | 4/28/2020 |
2.0.0 | 927,007 | 3/31/2020 |
1.3.0 | 874,438 | 12/18/2019 |
1.2.0 | 2,825,704 | 2/7/2019 |
1.1.3 | 1,441,952 | 5/29/2018 |
1.1.2 | 236,418 | 2/5/2018 |
1.1.1 | 83,442 | 1/15/2018 |
1.1.0 | 180,574 | 4/26/2017 |
1.0.2 | 46,439 | 1/27/2017 |
1.0.1 | 16,056 | 12/21/2016 |
1.0.0 | 15,274 | 12/1/2016 |