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

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

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

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

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

            ListShareInvitationsResponse resp = new ListShareInvitationsResponse();

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

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

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