AWSMachineLearningDescribeBatchPredictionsOutput

Objective-C

@interface AWSMachineLearningDescribeBatchPredictionsOutput

Swift

class AWSMachineLearningDescribeBatchPredictionsOutput

Represents the output of a DescribeBatchPredictions operation. The content is essentially a list of BatchPredictions.

  • The ID of the next page in the paginated results that indicates at least one more page follows.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }
  • A list of BatchPrediction objects that meet the search criteria.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSMachineLearningBatchPrediction *> *_Nullable results;

    Swift

    var results: [AWSMachineLearningBatchPrediction]? { get set }