in src/Amazon.Extensions.Configuration.SystemsManager/Internal/SystemsManagerProcessor.cs [32:39]
public SystemsManagerProcessor(SystemsManagerConfigurationSource source)
{
if (source.AwsOptions == null) throw new ArgumentNullException(nameof(source.AwsOptions));
if (source.Path == null) throw new ArgumentNullException(nameof(source.Path));
Source = source;
Source.ParameterProcessor = Source.ParameterProcessor ?? new DefaultParameterProcessor();
}