namespace AwsDotnetFsharp open Amazon.Lambda.Core [)>] do () type Request = { Key1 : string; Key2 : string; Key3 : string } type Response = { Message : string; Request : Request } module Handler = open System open System.IO open System.Text let hello(request:Request) = { Message="Go Serverless v1.0! Your function executed successfully!" Request=request }