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