예제 #1
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonPersonalizeConfig config = new AmazonPersonalizeConfig();

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

            ListSolutionVersionsResponse resp = new ListSolutionVersionsResponse();

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

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

                foreach (var obj in resp.SolutionVersions)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
예제 #2
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)
        {
            ListSolutionVersionsResponse response = new ListSolutionVersionsResponse();

            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("solutionVersions", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <SolutionVersionSummary, SolutionVersionSummaryUnmarshaller>(SolutionVersionSummaryUnmarshaller.Instance);
                    response.SolutionVersions = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }