aws-lambda-dotnet
aws-lambda-dotnet copied to clipboard
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
## Description If you create new lambda project, add a reference to .net 5 class library and deploy it to AWS it fails to run there. This has also been...
### Describe the bug If you set the template path in `aws-lambda-tools-defaults.json` to a different folder (for example the folder one level above the projects with the lambda code), then...
## Describe the Feature Add support to `Amazon.Lambda.RuntimeSupport` for asynchronous initialization of .NET functions using the `dotnetcore3.1` or `dotnet6` managed runtimes. ### Is your Feature Request related to a problem?...
*Issue #1087* *Description of changes:* Adds support for asynchronous initialization of classes that implement handlers for lambdas by introducing a new `IHandlerInitializer` interface (the specific name is open for discussion)....
### Describe the feature Microsoft provides WebApplicationFactory for AspNetCore in-memory integration testing. I think something similar could be done for AspNetCore lambdas. It would parse generated (or created manually /...
DynamoDB events have milliseconds, not seconds, in their timestamps which crashes deserialization
## Description I'm creating a lambda to process DynamoDB events streamed through Kinesis, which means they're wrapped in base64, etcetera. During processing I pull them out and then deserialize them...
Are there plans for a version of the Amazon.Lambda.TestTool that will be compatible with a custom runtime for versions of .NET Core (2.2, etc)?
I wanted to write some custom resources for my CloudFormation templates using .NET core in AWS Lambdas. All the samples are in JS and Python at the moment: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/walkthrough-custom-resources-lambda-lookup-amiids.html I'm...
Can't find an example of how to create a dockerfile using the dotnet Lambda Runtime Interface Client
### Describe the issue The page [Deploy .NET Lambda functions with container images](https://docs.aws.amazon.com/lambda/latest/dg/csharp-image.html) provides a [link](https://github.com/aws/aws-lambda-dotnet/blob/master/README.md) to "downloading" the Runtime Interface Client for dotnet, but there are no instructions on...
## Description Invoking a Lambda function that takes a string as a parameter from the `lambda-test-tool` requires different escaping than invoking the real Lambda from `dotnet lambda invoke-function`. ## Reproduction...