/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListAnalyzersResponse response = new ListAnalyzersResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("analyzers", targetDepth)) { var unmarshaller = new ListUnmarshaller <AnalyzerSummary, AnalyzerSummaryUnmarshaller>(AnalyzerSummaryUnmarshaller.Instance); response.Analyzers = 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) { AmazonAccessAnalyzerConfig config = new AmazonAccessAnalyzerConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonAccessAnalyzerClient client = new AmazonAccessAnalyzerClient(creds, config); ListAnalyzersResponse resp = new ListAnalyzersResponse(); do { ListAnalyzersRequest req = new ListAnalyzersRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListAnalyzers(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.Analyzers) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }