/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListDeliverabilityTestReportsResponse response = new ListDeliverabilityTestReportsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("DeliverabilityTestReports", targetDepth)) { var unmarshaller = new ListUnmarshaller <DeliverabilityTestReport, DeliverabilityTestReportUnmarshaller>(DeliverabilityTestReportUnmarshaller.Instance); response.DeliverabilityTestReports = 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) { AmazonPinpointEmailConfig config = new AmazonPinpointEmailConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonPinpointEmailClient client = new AmazonPinpointEmailClient(creds, config); ListDeliverabilityTestReportsResponse resp = new ListDeliverabilityTestReportsResponse(); do { ListDeliverabilityTestReportsRequest req = new ListDeliverabilityTestReportsRequest { NextToken = resp.NextToken , PageSize = maxItems }; resp = client.ListDeliverabilityTestReports(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.DeliverabilityTestReports) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }