-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandler.cs
More file actions
31 lines (28 loc) · 773 Bytes
/
Handler.cs
File metadata and controls
31 lines (28 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using Amazon.Lambda.Core;
using System;
using System.Collections.Generic;
[assembly:LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]
namespace AwsDotnetCsharp
{
public class Handler
{
public Response Hello()
{
LambdaLogger.Log("Function Start\n");
return new Response("Not Found");
}
}
public class Response
{
public int statusCode {get; set;}
public string body {get; set;}
public Dictionary<string, string> headers {get; set;}
public Response(string message){
body = message;
statusCode = 404;
headers = new Dictionary<string, string> {
{ "Content-Type", "text/html" },
};
}
}
}