public static IConfigurationBuilder AddAppConfig()

in src/Amazon.Extensions.Configuration.SystemsManager/AppConfig/AppConfigExtensions.cs [93:101]


        public static IConfigurationBuilder AddAppConfig(this IConfigurationBuilder builder, string applicationId, string environmentId, string configProfileId, AWSOptions awsOptions, TimeSpan? reloadAfter)
        {
            if (applicationId == null) throw new ArgumentNullException(nameof(applicationId));
            if (environmentId == null) throw new ArgumentNullException(nameof(environmentId));
            if (configProfileId == null) throw new ArgumentNullException(nameof(configProfileId));
            if (awsOptions == null) throw new ArgumentNullException(nameof(awsOptions));

            return builder.AddAppConfig(ConfigureSource(applicationId, environmentId, configProfileId, awsOptions, reloadAfter: reloadAfter));
        }