We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b66b31 commit 8059d6eCopy full SHA for 8059d6e
src/api/Elastic.Documentation.Api.Lambda/Program.cs
@@ -5,7 +5,6 @@
5
using System.Text.Json.Serialization;
6
using Amazon.Lambda.APIGatewayEvents;
7
using Amazon.Lambda.Serialization.SystemTextJson;
8
-using Elastic.Documentation.Api.Core;
9
using Elastic.Documentation.Api.Core.AskAi;
10
using Elastic.Documentation.Api.Infrastructure;
11
@@ -21,7 +20,7 @@
21
20
22
app.Run();
23
24
-[JsonSerializable(typeof(APIGatewayHttpApiV2ProxyRequest))]
25
-[JsonSerializable(typeof(APIGatewayHttpApiV2ProxyResponse))]
+[JsonSerializable(typeof(APIGatewayProxyRequest))]
+[JsonSerializable(typeof(APIGatewayProxyResponse))]
26
[JsonSerializable(typeof(AskAiRequest))]
27
internal sealed partial class LambdaJsonSerializerContext : JsonSerializerContext;
0 commit comments