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