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

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

            DescribeAcceleratorsResponse resp = new DescribeAcceleratorsResponse();

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

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

                foreach (var obj in resp.AcceleratorSet)
                {
                    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)
        {
            DescribeAcceleratorsResponse response = new DescribeAcceleratorsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("acceleratorSet", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ElasticInferenceAccelerator, ElasticInferenceAcceleratorUnmarshaller>(ElasticInferenceAcceleratorUnmarshaller.Instance);
                    response.AcceleratorSet = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }