namespace BlueprintBaseName._1 open Amazon.Lambda.Core open System // Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class. [)>] () type Function() = /// /// A simple function that takes a string and does a ToUpper /// /// /// /// member __.FunctionHandler (input: string) (_: ILambdaContext) = match input with | null -> String.Empty | _ -> input.ToUpper()