public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonEC2Config config = new AmazonEC2Config(); config.RegionEndpoint = region; ConfigureClient(config); AmazonEC2Client client = new AmazonEC2Client(creds, config); DescribeNetworkInsightsPathsResponse resp = new DescribeNetworkInsightsPathsResponse(); do { DescribeNetworkInsightsPathsRequest req = new DescribeNetworkInsightsPathsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.DescribeNetworkInsightsPaths(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.NetworkInsightsPaths) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { DescribeNetworkInsightsPathsResponse response = new DescribeNetworkInsightsPathsResponse(); int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) { targetDepth = 2; } while (context.ReadAtDepth(originalDepth)) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("networkInsightsPathSet/item", targetDepth)) { var unmarshaller = NetworkInsightsPathUnmarshaller.Instance; var item = unmarshaller.Unmarshall(context); response.NetworkInsightsPaths.Add(item); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } } return(response); }