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