private static IDictionary ParseConfig()

in src/Amazon.Extensions.Configuration.SystemsManager/AppConfig/AppConfigProcessor.cs [72:81]


        private static IDictionary<string, string> ParseConfig(GetConfigurationResponse response)
        {
            switch (response.ContentType)
            {
                case "application/json":
                    return JsonConfigurationParser.Parse(response.Content);
                default:
                    throw new NotImplementedException($"Not implemented AppConfig type: {response.ContentType}");
            }
        }