public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonWellArchitectedConfig config = new AmazonWellArchitectedConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonWellArchitectedClient client = new AmazonWellArchitectedClient(creds, config); ListLensesResponse resp = new ListLensesResponse(); do { ListLensesRequest req = new ListLensesRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListLenses(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.LensSummaries) { 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(JsonUnmarshallerContext context) { ListLensesResponse response = new ListLensesResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("LensSummaries", targetDepth)) { var unmarshaller = new ListUnmarshaller <LensSummary, LensSummaryUnmarshaller>(LensSummaryUnmarshaller.Instance); response.LensSummaries = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("NextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } return(response); }