You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5.**Configuration → General configuration** → Timeout 60s, Memory 512 MB.
101
-
6. Verify on the **Test** tab using [`lambda/CsvParserLambda/test-event.json`](lambda/CsvParserLambda/test-event.json).
100
+
101
+
The handler tells the .NET Lambda runtime which method to invoke for each request. When you configure a function in .NET Core, the value of the handler takes the form of assembly::namespace.class-name::method-name
102
+
103
+
- CsvParserLambda — the compiled assembly name (from the .csproj)
104
+
- CsvParserLambda.Function — the namespace and class that contains the handler
105
+
- FunctionHandler — the method the runtime calls, which receives the request and returns the response
106
+
107
+
6.**Configuration → General configuration** → Timeout 60s, Memory 512 MB.
108
+
7. Verify on the **Test** tab using [`lambda/CsvParserLambda/test-event.json`](lambda/CsvParserLambda/test-event.json).
0 commit comments