public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonAppRegistryConfig config = new AmazonAppRegistryConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonAppRegistryClient client = new AmazonAppRegistryClient(creds, config); ListAttributeGroupsResponse resp = new ListAttributeGroupsResponse(); do { ListAttributeGroupsRequest req = new ListAttributeGroupsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListAttributeGroups(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.AttributeGroups) { 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) { ListAttributeGroupsResponse response = new ListAttributeGroupsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("attributeGroups", targetDepth)) { var unmarshaller = new ListUnmarshaller <AttributeGroupSummary, AttributeGroupSummaryUnmarshaller>(AttributeGroupSummaryUnmarshaller.Instance); response.AttributeGroups = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } return(response); }