Class: Aws::Comprehend::Types::DocumentLabel
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Comprehend::Types::DocumentLabel
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-comprehend/types.rb
 
Overview
Specifies one of the label or labels that categorize the document being analyzed.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the label.
 - 
  
    
      #page  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Page number where the label occurs.
 - 
  
    
      #score  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The confidence score that Amazon Comprehend has this label correctly attributed.
 
Instance Attribute Details
#name ⇒ String
The name of the label.
      3336 3337 3338 3339 3340 3341 3342  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 3336 class DocumentLabel < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end  | 
  
#page ⇒ Integer
Page number where the label occurs. This field is present in the response only if your request includes the ‘Byte` parameter.
      3336 3337 3338 3339 3340 3341 3342  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 3336 class DocumentLabel < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end  | 
  
#score ⇒ Float
The confidence score that Amazon Comprehend has this label correctly attributed.
      3336 3337 3338 3339 3340 3341 3342  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 3336 class DocumentLabel < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end  |