in saga-orchestration/SendNotificationLambda/src/SendNotificationLambda/Function.cs [14:20]
public SendNotificationResult FunctionHandler(ILambdaContext context)
{
context.Logger.Log("In SendNotificationLambda");
var result = new SendNotificationResult {Status = "SUCCESS"};
context.Logger.Log("After setting result to success");
return result;
}