in functions/source/real-time-adherence/AspectKinesisLamda/AwsSQSFacade.cs [24:33]
private string ParseQueue(int queueNum)
{
var queueEnvVar = $"{SQS_QUEUE_URL_ENVIRONMENT_VARIABLE_LOOKUP}{queueNum}";
var queueUrl = Environment.GetEnvironmentVariable(queueEnvVar);
if (string.IsNullOrEmpty(queueUrl))
{
throw new Exception($"Missing Lambda Variable {queueEnvVar}");
}
return queueUrl.Trim();
}