How do I map AWS API Gateway query string to C# AWS Lambda function?
问题 I have a C# lambda function that is called from API gateway using a GET request. [LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))] public ResponseModel MyFunction(RequestModel request) { return new ResponseModel { body = "Hello world!" }; } public class RequestModel { [JsonProperty("a")] public string A { get; set; } [JsonProperty("b")] public string B { get; set; } } public class ResponseModel { public int statusCode { get; set; } = 200; public object headers { get;