Class: Aws::MachineLearning::Types::DescribeMLModelsOutput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::MachineLearning::Types::DescribeMLModelsOutput
 
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Overview
Represents the output of a DescribeMLModels operation. The content
is essentially a list of MLModel.
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::MLModel> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of MLModelthat 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.
| 1523 1524 1525 1526 1527 1528 | # File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1523 class DescribeMLModelsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end | 
#results ⇒ Array<Types::MLModel>
A list of MLModel that meet the search criteria.
| 1523 1524 1525 1526 1527 1528 | # File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 1523 class DescribeMLModelsOutput < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end |