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

            ListSimulationJobBatchesResponse resp = new ListSimulationJobBatchesResponse();

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

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

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