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

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("worldExportJobSummaries", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <WorldExportJobSummary, WorldExportJobSummaryUnmarshaller>(WorldExportJobSummaryUnmarshaller.Instance);
                    response.WorldExportJobSummaries = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            ListWorldExportJobsResponse resp = new ListWorldExportJobsResponse();

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

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

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