/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListImageRecipesResponse response = new ListImageRecipesResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("imageRecipeSummaryList", targetDepth)) { var unmarshaller = new ListUnmarshaller <ImageRecipeSummary, ImageRecipeSummaryUnmarshaller>(ImageRecipeSummaryUnmarshaller.Instance); response.ImageRecipeSummaryList = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("requestId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.RequestId = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonImagebuilderConfig config = new AmazonImagebuilderConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonImagebuilderClient client = new AmazonImagebuilderClient(creds, config); ListImageRecipesResponse resp = new ListImageRecipesResponse(); do { ListImageRecipesRequest req = new ListImageRecipesRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListImageRecipes(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.ImageRecipeSummaryList) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }