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

            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("Trails", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <TrailInfo, TrailInfoUnmarshaller>(TrailInfoUnmarshaller.Instance);
                    response.Trails = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

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

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

            ListTrailsResponse resp = new ListTrailsResponse();

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

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

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