aws-lambda-dotnet
aws-lambda-dotnet copied to clipboard
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
### Describe the bug When experimenting with `Amazon.Lambda.Annotations` it seem that one also has to have `Amazon.Lambda.APIGatewayEvents` as a package reference in the project or the generated code can not...
Fixes #845. *Description of changes:* I've added request/responses for HTTP API custom authorizers (2.0 format). https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-lambda-authorizer.html By submitting this pull request, I confirm that my contribution is made under the...
My goal is to allow DotNet SignalR client and server to communicate via the AWS WebSockets API. This would allow us to use Blazor server-side components in an AWS Lambda...
### Describe the feature It should be nice to have support for SecretManager rotation Lambda in the test page dropdown list. See: https://docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-secrets_how.html ### Use Case Easier testing/debugging ### Proposed...
### Describe the bug Looking at the code of Amazon.Lambda.AspNetCoreServer.APIGatewayProxyFunction ``` if (apiGatewayRequest.PathParameters != null && apiGatewayRequest.PathParameters.ContainsKey("proxy") && !string.IsNullOrEmpty(apiGatewayRequest.Resource)) { string pathParameter = apiGatewayRequest.PathParameters["proxy"]; str1 = apiGatewayRequest.Resource.Replace("{proxy+}", pathParameter); } if...
### Describe the bug Not able to consume values returned by a Lambda Authorizer; they are not there even if they are present in the input JSON ### Expected Behavior...
This commit adds POCOs to model S3 object events routed via EventBridge. closes #1072
## The Question I have tried to update an asp.net core 3.1 lambda to .net 6, and unfortunately following aws' documentation the lambda fails to start, giving me 502 bad...
### Describe the feature I should be able to use structural logging with lambda logger. ### Use Case I'd like to use structural logging either with CloudWatch Insights, or with...
### Describe the feature The AWS Lambda team recently added a new feature - [function Urls](https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html). It would be great to support it in [Amazon.Lambda.Annotations](https://github.com/aws/aws-lambda-dotnet/tree/master/Libraries/src/Amazon.Lambda.Annotations) library. ### Use Case FunctionUrls...