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

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

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

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

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

            ListNotificationChannelsResponse resp = new ListNotificationChannelsResponse();

            do
            {
                ListNotificationChannelsRequest req = new ListNotificationChannelsRequest
                {
                    NextToken = resp.NextToken
                };

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

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