public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonAlexaForBusinessConfig config = new AmazonAlexaForBusinessConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonAlexaForBusinessClient client = new AmazonAlexaForBusinessClient(creds, config); SearchSkillGroupsResponse resp = new SearchSkillGroupsResponse(); do { SearchSkillGroupsRequest req = new SearchSkillGroupsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.SearchSkillGroups(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.SkillGroups) { 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) { SearchSkillGroupsResponse response = new SearchSkillGroupsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("NextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("SkillGroups", targetDepth)) { var unmarshaller = new ListUnmarshaller <SkillGroupData, SkillGroupDataUnmarshaller>(SkillGroupDataUnmarshaller.Instance); response.SkillGroups = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("TotalCount", targetDepth)) { var unmarshaller = IntUnmarshaller.Instance; response.TotalCount = unmarshaller.Unmarshall(context); continue; } } return(response); }