Created
March 22, 2024 18:28
-
-
Save douglasnaphas/fada7e5e03007af28fd0f367a01883d8 to your computer and use it in GitHub Desktop.
hello-world C# Lambda function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Amazon.Lambda.Core; | |
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.SystemTextJson.DefaultLambdaJsonSerializer))] | |
namespace HelloWorld | |
{ | |
public class Function | |
{ | |
public string FunctionHandler(string input, ILambdaContext context) | |
{ | |
return "Hello World!"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment