public SystemsManagerProcessor()

in src/Amazon.Extensions.Configuration.SystemsManager/Internal/SystemsManagerProcessor.cs [32:42]


        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 ??
                (IsSecretsManagerPath(Source.Path)
                    ? new JsonParameterProcessor()
                    : new DefaultParameterProcessor());
        }