Class: Aws::Comprehend::Types::EntityLabel
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Comprehend::Types::EntityLabel
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-comprehend/types.rb
 
Overview
Specifies one of the label or labels that categorize the personally identifiable information (PII) entity being analyzed.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the label.
 - 
  
    
      #score  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The level of confidence that Amazon Comprehend has in the accuracy of the detection.
 
Instance Attribute Details
#name ⇒ String
The name of the label.
      3952 3953 3954 3955 3956 3957  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 3952 class EntityLabel < Struct.new( :name, :score) SENSITIVE = [] include Aws::Structure end  | 
  
#score ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of the detection.
      3952 3953 3954 3955 3956 3957  | 
    
      # File 'lib/aws-sdk-comprehend/types.rb', line 3952 class EntityLabel < Struct.new( :name, :score) SENSITIVE = [] include Aws::Structure end  |