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));
        }