/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { DescribeStoreImageTasksResponse response = new DescribeStoreImageTasksResponse(); 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("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("storeImageTaskResultSet/item", targetDepth)) { var unmarshaller = StoreImageTaskResultUnmarshaller.Instance; var item = unmarshaller.Unmarshall(context); response.StoreImageTaskResults.Add(item); continue; } } } return(response); }
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); DescribeStoreImageTasksResponse resp = new DescribeStoreImageTasksResponse(); do { DescribeStoreImageTasksRequest req = new DescribeStoreImageTasksRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.DescribeStoreImageTasks(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.StoreImageTaskResults) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }