Configuration for accessing Amazon DescribeMetricFilters service
Inheritance: Amazon.CloudWatchLogs.Model.DescribeMetricFiltersResult
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeMetricFiltersResponse response = new DescribeMetricFiltersResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("metricFilters", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<MetricFilter, MetricFilterUnmarshaller>(MetricFilterUnmarshaller.Instance);
                    response.MetricFilters = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }
 

            return response;
        }