in src/Amazon.Extensions.Configuration.SystemsManager/SystemsManagerExtensions.cs [92:98]
public static IConfigurationBuilder AddSystemsManager(this IConfigurationBuilder builder, string path, AWSOptions awsOptions)
{
if (path == null) throw new ArgumentNullException(nameof(path));
if (awsOptions == null) throw new ArgumentNullException(nameof(awsOptions));
return builder.AddSystemsManager(ConfigureSource(path, awsOptions));
}