Amazon.Lambda.Core
2.3.0
Prefix Reserved
dotnet add package Amazon.Lambda.Core --version 2.3.0
NuGet\Install-Package Amazon.Lambda.Core -Version 2.3.0
<PackageReference Include="Amazon.Lambda.Core" Version="2.3.0" />
paket add Amazon.Lambda.Core --version 2.3.0
#r "nuget: Amazon.Lambda.Core, 2.3.0"
// Install Amazon.Lambda.Core as a Cake Addin #addin nuget:?package=Amazon.Lambda.Core&version=2.3.0 // Install Amazon.Lambda.Core as a Cake Tool #tool nuget:?package=Amazon.Lambda.Core&version=2.3.0
Amazon.Lambda.Core
This package contains interfaces and classes that can be helpful when running your .NET code on the AWS Lambda platform.
ILambdaContext
The Amazon.Lambda.Core.ILambdaContext interface can be used in your handler function to access information about the current execution, such as the name of the current function, the memory limit, execution time remaining, and logging.
Here is an example of how this interface can be used in your handler function. The function performs a simple ToUpper content transformation, while writing some context data to Console.
public string ToUpper(string input, ILambdaContext context)
{
Console.WriteLine("Function name: " + context.FunctionName);
Console.WriteLine("Max mem allocated: " + context.MemoryLimitInMB);
Console.WriteLine("Time remaining: " + context.RemainingTime);
Console.WriteLine("CloudWatch log stream name: " + context.LogStreamName);
Console.WriteLine("CloudWatch log group name: " + context.LogGroupName);
return input?.ToUpper();
}
An instance of this interface is attached to any ControllerBase.Request.HttpContext
instances via the Items
property using the key "LAMBDA_CONTEXT / LambdaContext"
Here is an example of how you can use this interface in a controller method.
[ApiController]
public class TestController : ControllerBase
{
[HttpGet("/[controller]")]
public IActionResult Get()
{
Response.Headers.Add("Access-Control-Allow-Origin", "*"); // NOTE: Should be configured via app.UseCors in Startup.cs
var context = (ILambdaContext)Request.HttpContext.Items[APIGatewayProxyFunction.LAMBDA_CONTEXT];
var tmp = new
{
context.AwsRequestId,
context.FunctionName,
context.MemoryLimitInMB,
context.LogStreamName,
context.LogGroupName
};
return new OkObjectResult(tmp);
}
}
The following sections describe various other interfaces which are accessible through the ILambdaContext
.
IClientContext
The Amazon.Lambda.Core.IClientContext
interface provides information about the client application and device when the Lambda function is invoked through the AWS Mobile SDK. This includes environment information such as make and model of the device, information about the application, as well as use-defined name-value pairs that describe this installation of the application.
This interface can be found under ILambdaContext.ClientContext
.
IClientApplication
The Amazon.Lambda.Core.IClientApplication
interface provides information about the client application when the Lambda function is invoked through the AWS Mobile SDK. This includes the application title, its version, etc.
This interface can be found under ILambdaContext.ClientContext.Client
.
ICognitoIdentity
The Amazon.Lambda.Core.ICognitoIdentity
interface provides Information about the Amazon Cognito identity provider when invoked through the AWS Mobile SDK. This includes the Amazon Cognito IdentityId and IdentityPoolId.
This interface can be found under ILambdaContext.Identity
.
ILambdaLogger
The Amazon.Lambda.Core.ILambdaLogger
interface allows your function to log data to CloudWatch. This interface defines methods Log
and LogLine
. Both take a string and result in a CloudWatch Logs event, with or without a line terminator, provided that the event size is within the allowed limits.
Here is an example of how this interface can be used in your handler function. The function performs a simple ToUpper content transformation, while logging the context data.
public string ToUpper(string input, ILambdaContext context)
{
context.Logger.Log("Function name: " + context.FunctionName);
context.Logger.Log("Max mem allocated: " + context.MemoryLimitInMB);
context.Logger.Log("Time remaining: " + context.RemainingTime);
return input?.ToUpper();
}
ILambdaSerializer
The Amazon.Lambda.Core.ILambdaSerializer
interface allows you to implement a custom serializer to convert between arbitrary types and Lambda streams.
By default, Lambda functions can only use Stream types as inputs or outputs. To use other types, you can either write your own serializer that implements ILambdaSerializer, or use the Amazon.Lambda.Serialization.Json
package to serialize and deserialize JSON data.
See Amazon.Lambda.Serialization.Json.JsonSerializer
class for a sample implementation of ILambdaSerializer
.
LambdaSerializerAttribute
The Amazon.Lambda.Core.LambdaSerializerAttribute
is an attribute that can is used to instruct the Lambda container what serializer to use when converting .NET types to Lambda-supported types.
This attribute can be present on the assembly or on the handler method. If you specify both, the method attribute takes priority.
Here is an example of setting this attribute on the assembly.
[assembly: Amazon.Lambda.Core.LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]
And this is how the method can be applied to the handler method.
[LambdaSerializer(typeof(XmlSerializer))]
public Response CustomSerializerMethod(Request input)
{
...
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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 is compatible. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.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. |
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (151)
Showing the top 5 NuGet packages that depend on Amazon.Lambda.Core:
Package | Downloads |
---|---|
Amazon.Lambda.Serialization.SystemTextJson
Amazon Lambda .NET Core support - Serialization.Json with System.Text.Json. |
|
Amazon.Lambda.Serialization.Json
Amazon Lambda .NET Core support - Serialization.Json package. |
|
Amazon.Lambda.Logging.AspNetCore
Amazon Lambda .NET Core support - Logging ASP.NET Core package. |
|
Amazon.Lambda.AspNetCoreServer
Amazon.Lambda.AspNetCoreServer makes it easy to run ASP.NET Core Web API applications as AWS Lambda functions. |
|
Amazon.Lambda.TestUtilities
Amazon.Lambda.TestUtilties includes stub implementations of interfaces defined in Amazon.Lambda.Core and helper methods. |
GitHub repositories (25)
Showing the top 5 popular GitHub repositories that depend on Amazon.Lambda.Core:
Repository | Stars |
---|---|
lambci/docker-lambda
Docker images and test runners that replicate the live AWS Lambda environment
|
|
mongodb/mongo-csharp-driver
The Official C# .NET Driver for MongoDB
|
|
aws/aws-sdk-net
The official AWS SDK for .NET. For more information on the AWS SDK for .NET, see our web site:
|
|
aws/aws-lambda-dotnet
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
|
|
awslabs/aws-apigateway-lambda-authorizer-blueprints
Blueprints and examples for Lambda-based custom Authorizers for use in API Gateway.
|