in playground/Lambda/SQSProcessorFunction/Function.cs [28:35]
public Task FunctionHandler(SQSEvent evnt, ILambdaContext context)
=> AWSLambdaWrapper.TraceAsync(_traceProvider, async (evnt, context) =>
{
foreach (var message in evnt.Records)
{
await ProcessMessageAsync(message, context);
}
}, evnt, context);