Solution Review: Using a Serializer and Context
Review the solution to using a serializer and the context object.
We'll cover the following...
The completed solution is presented in the playground below.
namespace LambdaApp; public class Output { public bool Success { get; set; } public string? OriginalInput { get; set; } public int MemoryLimitInMB { get; set; } }
Complete solution
To make the function handler work, we needed to apply a JSON serializer. Without one, the only data type supported for input and output is ...