public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonFMSConfig config = new AmazonFMSConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonFMSClient client = new AmazonFMSClient(creds, config); ListMemberAccountsResponse resp = new ListMemberAccountsResponse(); do { ListMemberAccountsRequest req = new ListMemberAccountsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListMemberAccounts(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.MemberAccounts) { 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) { ListMemberAccountsResponse response = new ListMemberAccountsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("memberAccounts", targetDepth)) { var unmarshaller = new ListUnmarshaller <MemberAccount, MemberAccountUnmarshaller>(MemberAccountUnmarshaller.Instance); response.MemberAccounts = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } return(response); }