/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { GetDomainNamesResponse response = new GetDomainNamesResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("items", targetDepth)) { var unmarshaller = new ListUnmarshaller <DomainName, DomainNameUnmarshaller>(DomainNameUnmarshaller.Instance); response.Items = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonAPIGatewayConfig config = new AmazonAPIGatewayConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonAPIGatewayClient client = new AmazonAPIGatewayClient(creds, config); GetDomainNamesResponse resp = new GetDomainNamesResponse(); do { GetDomainNamesRequest req = new GetDomainNamesRequest { Position = resp.Position , Limit = maxItems }; resp = client.GetDomainNames(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.Items) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.Position)); }