Skip to content

Commit aeb4441

Browse files
authored
Update README.md
1 parent 72d6fd7 commit aeb4441

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,15 @@ See [`lambda/CsvParserLambda/README.md`](lambda/CsvParserLambda/README.md).
9797
3. **Code** tab → **Upload from****.zip file** → upload `CsvParserLambda.zip`**Save**.
9898
4. **Runtime settings****Edit** → Handler:
9999
`CsvParserLambda::CsvParserLambda.Function::FunctionHandler`.
100-
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).
102109

103110
### 3. Create the REST API (console)
104111

0 commit comments

Comments
 (0)