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

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("AccountIds", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <string, StringUnmarshaller>(StringUnmarshaller.Instance);
                    response.AccountIds = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("NextPageToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextPageToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            ListPortfolioAccessResponse resp = new ListPortfolioAccessResponse();

            do
            {
                ListPortfolioAccessRequest req = new ListPortfolioAccessRequest
                {
                    PageToken = resp.NextPageToken
                    ,
                    PageSize = maxItems
                };

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

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