/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListVoiceConnectorsResponse response = new ListVoiceConnectorsResponse(); 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("VoiceConnectors", targetDepth)) { var unmarshaller = new ListUnmarshaller <VoiceConnector, VoiceConnectorUnmarshaller>(VoiceConnectorUnmarshaller.Instance); response.VoiceConnectors = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonChimeConfig config = new AmazonChimeConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonChimeClient client = new AmazonChimeClient(creds, config); ListVoiceConnectorsResponse resp = new ListVoiceConnectorsResponse(); do { ListVoiceConnectorsRequest req = new ListVoiceConnectorsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListVoiceConnectors(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.VoiceConnectors) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }