Ganesh Jangir

Results 44 comments of Ganesh Jangir

@Dreamescaper thanks for PR I understand what the code does, but failing to understand the intent here. Is having a testable in-memory server intention here?

Thanks for the RP, apologies for picking this late. How this change is integration tested? I understand from the change, POCOs are created using the docs available but it has...

> @ganeshnj I haven't integration tested all of these classes, but I have tested the custom email sender and custom message events. Do you have a standard framework you would...

> > > Would it be possible to customize parsing the request somehow? For example, if I have not a JSON body, but `application/x-www-form-urlencoded` ? > > Another question -...

We are excited to announce that Lambda Annotations first preview is here. Developers using the preview version of [Amazon.Lambda.Annotations NuGet package](https://www.nuget.org/packages/Amazon.Lambda.Annotations) can start using the simplified programming model to write...

It depends on the how you are calling the target method in your local environment. For [example ](https://github.com/aws/aws-lambda-dotnet/blob/master/Libraries/test/TestServerlessApp/SimpleCalculator.cs#L29)an attributed Lambda Function ```csharp [LambdaFunction(Name = "SimpleCalculatorAdd", PackageType = LambdaPackageType.Image)] [RestApi(HttpMethod.Get, "/SimpleCalculator/Add")]...

@Kralizek If understood it correctly, we plan to support `Startup.Configure` method which will be used to configure the request pipeline.

@lukeemery serverless.template writer only updates the configuration that are updatable from C# code, rest of the of the configuration is not altered. Anything added outside the scope, will stay as...

I see what you mean. I have not tested it myself but [this](https://github.com/aws/aws-dotnet-extensions-configuration#reloading-in-aws-lambda-1) should still work. It can go to `Startup.ConfigureServices` method.

> This means that user code wishing to perform asynchronous initialization must perform it on the path of the first request, moving the "penalty" from the initialization code path to...