/// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListDataSetsResponse response = new ListDataSetsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("DataSets", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <DataSetEntry, DataSetEntryUnmarshaller>(DataSetEntryUnmarshaller.Instance);
                    response.DataSets = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("NextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonDataExchangeConfig config = new AmazonDataExchangeConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonDataExchangeClient client = new AmazonDataExchangeClient(creds, config);

            ListDataSetsResponse resp = new ListDataSetsResponse();

            do
            {
                ListDataSetsRequest req = new ListDataSetsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

                resp = client.ListDataSets(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.DataSets)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }