Class: Aws::Textract::Types::Prediction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Textract::Types::Prediction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-textract/types.rb
 
Overview
Contains information regarding predicted values returned by Amazon Textract operations, including the predicted value and the confidence in the predicted value.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Amazon Textract’s confidence in its predicted value.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The predicted value of a detected object.
 
Instance Attribute Details
#confidence ⇒ Float
Amazon Textract’s confidence in its predicted value.
      2516 2517 2518 2519 2520 2521  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 2516 class Prediction < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The predicted value of a detected object.
      2516 2517 2518 2519 2520 2521  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 2516 class Prediction < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end  |