/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { GetBuiltinSlotTypesResponse response = new GetBuiltinSlotTypesResponse(); 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("slotTypes", targetDepth)) { var unmarshaller = new ListUnmarshaller <BuiltinSlotTypeMetadata, BuiltinSlotTypeMetadataUnmarshaller>(BuiltinSlotTypeMetadataUnmarshaller.Instance); response.SlotTypes = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonLexModelBuildingServiceConfig config = new AmazonLexModelBuildingServiceConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonLexModelBuildingServiceClient client = new AmazonLexModelBuildingServiceClient(creds, config); GetBuiltinSlotTypesResponse resp = new GetBuiltinSlotTypesResponse(); do { GetBuiltinSlotTypesRequest req = new GetBuiltinSlotTypesRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.GetBuiltinSlotTypes(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.SlotTypes) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }