/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeTestCasesResponse response = new DescribeTestCasesResponse(); 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("testCases", targetDepth)) { var unmarshaller = new ListUnmarshaller <TestCase, TestCaseUnmarshaller>(TestCaseUnmarshaller.Instance); response.TestCases = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonCodeBuildConfig config = new AmazonCodeBuildConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonCodeBuildClient client = new AmazonCodeBuildClient(creds, config); DescribeTestCasesResponse resp = new DescribeTestCasesResponse(); do { DescribeTestCasesRequest req = new DescribeTestCasesRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.DescribeTestCases(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.TestCases) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }