/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListInputsResponse response = new ListInputsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("inputSummaries", targetDepth)) { var unmarshaller = new ListUnmarshaller <InputSummary, InputSummaryUnmarshaller>(InputSummaryUnmarshaller.Instance); response.InputSummaries = 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) { AmazonMediaLiveConfig config = new AmazonMediaLiveConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonMediaLiveClient client = new AmazonMediaLiveClient(creds, config); ListInputsResponse resp = new ListInputsResponse(); do { ListInputsRequest req = new ListInputsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListInputs(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.Inputs) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }