public AppConfigProcessor()

in src/Amazon.Extensions.Configuration.SystemsManager/AppConfig/AppConfigProcessor.cs [31:40]


        public AppConfigProcessor(AppConfigConfigurationSource source)
        {
            if (source.ApplicationId == null) throw new ArgumentNullException(nameof(source.ApplicationId));
            if (source.EnvironmentId == null) throw new ArgumentNullException(nameof(source.EnvironmentId));
            if (source.ConfigProfileId == null) throw new ArgumentNullException(nameof(source.ConfigProfileId));
            if (source.ClientId == null) throw new ArgumentNullException(nameof(source.ClientId));
            if (source.AwsOptions == null) throw new ArgumentNullException(nameof(source.AwsOptions));

            Source = source;
        }