Configuration for accessing Amazon DescribeLogStreams service
Inheritance: Amazon.CloudWatchLogs.Model.DescribeLogStreamsResult
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeLogStreamsResponse response = new DescribeLogStreamsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("logStreams", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<LogStream, LogStreamUnmarshaller>(LogStreamUnmarshaller.Instance);
                    response.LogStreams = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }
 

            return response;
        }