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