Example #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)
        {
            ListSimulationApplicationsResponse response = new ListSimulationApplicationsResponse();

            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("simulationApplicationSummaries", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <SimulationApplicationSummary, SimulationApplicationSummaryUnmarshaller>(SimulationApplicationSummaryUnmarshaller.Instance);
                    response.SimulationApplicationSummaries = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
Example #2
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonRoboMakerConfig config = new AmazonRoboMakerConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonRoboMakerClient client = new AmazonRoboMakerClient(creds, config);

            ListSimulationApplicationsResponse resp = new ListSimulationApplicationsResponse();

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

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

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