Class: Aws::SageMaker::Types::SearchResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::SearchResponse
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the result of the previous ‘Search` request was truncated, the response includes a NextToken.
 - 
  
    
      #results  ⇒ Array<Types::SearchRecord> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of ‘SearchRecord` objects.
 
Instance Attribute Details
#next_token ⇒ String
If the result of the previous ‘Search` request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request.
      42327 42328 42329 42330 42331 42332  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42327 class SearchResponse < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#results ⇒ Array<Types::SearchRecord>
A list of ‘SearchRecord` objects.
      42327 42328 42329 42330 42331 42332  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42327 class SearchResponse < Struct.new( :results, :next_token) SENSITIVE = [] include Aws::Structure end  |