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