public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonMigrationHubConfig config = new AmazonMigrationHubConfig();

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

            ListMigrationTasksResponse resp = new ListMigrationTasksResponse();

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

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

                foreach (var obj in resp.MigrationTaskSummaryList)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListMigrationTasksResponse response = new ListMigrationTasksResponse();

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

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

            return(response);
        }