Ejemplo n.º 1
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListVoiceConnectorGroupsResponse response = new ListVoiceConnectorGroupsResponse();

            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("VoiceConnectorGroups", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <VoiceConnectorGroup, VoiceConnectorGroupUnmarshaller>(VoiceConnectorGroupUnmarshaller.Instance);
                    response.VoiceConnectorGroups = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
Ejemplo n.º 2
0
        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);

            ListVoiceConnectorGroupsResponse resp = new ListVoiceConnectorGroupsResponse();

            do
            {
                ListVoiceConnectorGroupsRequest req = new ListVoiceConnectorGroupsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

                resp = client.ListVoiceConnectorGroups(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.VoiceConnectorGroups)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }