/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeReplicationTaskAssessmentRunsResponse response = new DescribeReplicationTaskAssessmentRunsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("Marker", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Marker = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ReplicationTaskAssessmentRuns", targetDepth)) { var unmarshaller = new ListUnmarshaller <ReplicationTaskAssessmentRun, ReplicationTaskAssessmentRunUnmarshaller>(ReplicationTaskAssessmentRunUnmarshaller.Instance); response.ReplicationTaskAssessmentRuns = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonDatabaseMigrationServiceConfig config = new AmazonDatabaseMigrationServiceConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonDatabaseMigrationServiceClient client = new AmazonDatabaseMigrationServiceClient(creds, config); DescribeReplicationTaskAssessmentRunsResponse resp = new DescribeReplicationTaskAssessmentRunsResponse(); do { DescribeReplicationTaskAssessmentRunsRequest req = new DescribeReplicationTaskAssessmentRunsRequest { Marker = resp.Marker , MaxRecords = maxItems }; resp = client.DescribeReplicationTaskAssessmentRuns(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.ReplicationTaskAssessmentRuns) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.Marker)); }