Class: Aws::MachineLearning::Types::DescribeBatchPredictionsOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MachineLearning::Types::DescribeBatchPredictionsOutput
 
 
- Defined in:
 - gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
 
Overview
Represents the output of a DescribeBatchPredictions operation. The
content is essentially a list of BatchPredictions.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the next page in the paginated results that indicates at least one more page follows.
 - 
  
    
      #results  ⇒ Array<Types::BatchPrediction> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of
BatchPredictionobjects that meet the search criteria. 
Instance Attribute Details
#next_token ⇒ String
The ID of the next page in the paginated results that indicates at least one more page follows.
      1130 1131 1132 1133 1134 1135  | 
    
      # File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1130 class DescribeBatchPredictionsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#results ⇒ Array<Types::BatchPrediction>
A list of BatchPrediction objects that meet the search criteria.
      1130 1131 1132 1133 1134 1135  | 
    
      # File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1130 class DescribeBatchPredictionsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end  |