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

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

            ListSuiteRunsResponse resp = new ListSuiteRunsResponse();

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

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

                foreach (var obj in resp.SuiteRunsList)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
Example #2
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListSuiteRunsResponse response = new ListSuiteRunsResponse();

            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("suiteRunsList", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <SuiteRunInformation, SuiteRunInformationUnmarshaller>(SuiteRunInformationUnmarshaller.Instance);
                    response.SuiteRunsList = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }