/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListDocumentClassifiersResponse response = new ListDocumentClassifiersResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("DocumentClassifierPropertiesList", targetDepth)) { var unmarshaller = new ListUnmarshaller <DocumentClassifierProperties, DocumentClassifierPropertiesUnmarshaller>(DocumentClassifierPropertiesUnmarshaller.Instance); response.DocumentClassifierPropertiesList = 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) { AmazonComprehendConfig config = new AmazonComprehendConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonComprehendClient client = new AmazonComprehendClient(creds, config); ListDocumentClassifiersResponse resp = new ListDocumentClassifiersResponse(); do { ListDocumentClassifiersRequest req = new ListDocumentClassifiersRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListDocumentClassifiers(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.DocumentClassifierPropertiesList) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }