Class: Aws::Comprehend::Types::DocumentClassificationConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Comprehend::Types::DocumentClassificationConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-comprehend/types.rb
 
Overview
Configuration required for a custom classification model.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #labels  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One or more labels to associate with the custom classifier.
 - 
  
    
      #mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Classification mode indicates whether the documents are ‘MULTI_CLASS` or `MULTI_LABEL`.
 
Instance Attribute Details
#labels ⇒ Array<String>
One or more labels to associate with the custom classifier.
      2692 2693 2694 2695 2696 2697  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 2692 class DocumentClassificationConfig < Struct.new( :mode, :labels) SENSITIVE = [] include Aws::Structure end  | 
  
#mode ⇒ String
Classification mode indicates whether the documents are ‘MULTI_CLASS` or `MULTI_LABEL`.
      2692 2693 2694 2695 2696 2697  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 2692 class DocumentClassificationConfig < Struct.new( :mode, :labels) SENSITIVE = [] include Aws::Structure end  |