Norm Johanson
Norm Johanson
Interesting to have a light weight abstraction for using the DI. I think ConfigureServices should be called as part of the constructor or on first invoke so that you aren't...
This sample is only for Lambda using Lambda's programming model.
I would suggest option 3 as well. That should be pretty easy using the `--tool-path` option on the `dotnet tool install` command.
Do you happen to have in your csproj file and old reference to Amazon.Lambda.Tools using the `DotNetCliToolReference` element? I wondering if you do and when you do a restore it...
Hi @svoychik I pinged the Lambda team on the status of the deployment and they have been doing a lot of internal changes to how their runtime deployments. The side...
@Sparafusile I'm trying to understand what you want to accomplish. The `HttpApi` attribute is used for exposing the Lambda function as a API Gateway rest endpoint. Where is the SQS...
I would like to, it's just a matter of finding time and demand for it. So if this is a feature people want I encourage people to +1 the issue.
I'm not sure why you would see any change in behavior when targeting .NET Core 3.1. There wasn't any special logic for `DetailType` and the unit test that tests both...
Should we change the `StatusDescription` property in `ApplicationLoadBalancerResponse` to compute a status description if it hasn't been set but `StatusCode` has been set?
I was thinking of something like this: ```csharp class Program { static void Main(string[] args) { Console.WriteLine(new ApplicationLoadBalancerResponse {StatusCode = 200 }.StatusDescription); Console.WriteLine(new ApplicationLoadBalancerResponse { StatusCode = 404 }.StatusDescription); Console.WriteLine(new...