Class: Aws::MachineLearning::Types::DescribeBatchPredictionsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-machinelearning/types.rb

Overview

Represents the output of a ‘DescribeBatchPredictions` operation. The content is essentially a list of `BatchPrediction`s.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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

Returns:

  • (String)


1267
1268
1269
1270
1271
# File 'lib/aws-sdk-machinelearning/types.rb', line 1267

class DescribeBatchPredictionsOutput < Struct.new(
  :results,
  :next_token)
  include Aws::Structure
end

#resultsArray<Types::BatchPrediction>

A list of ‘BatchPrediction` objects that meet the search criteria.

Returns:



1267
1268
1269
1270
1271
# File 'lib/aws-sdk-machinelearning/types.rb', line 1267

class DescribeBatchPredictionsOutput < Struct.new(
  :results,
  :next_token)
  include Aws::Structure
end