Class: Aws::Textract::Types::NormalizedValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Textract::Types::NormalizedValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-textract/types.rb
 
Overview
Contains information relating to dates in a document, including the type of value, and the value.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the date, written as Year-Month-DayTHour:Minute:Second.
 - 
  
    
      #value_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The normalized type of the value detected.
 
Instance Attribute Details
#value ⇒ String
The value of the date, written as Year-Month-DayTHour:Minute:Second.
      2374 2375 2376 2377 2378 2379  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 2374 class NormalizedValue < Struct.new( :value, :value_type) SENSITIVE = [] include Aws::Structure end  | 
  
#value_type ⇒ String
The normalized type of the value detected. In this case, DATE.
      2374 2375 2376 2377 2378 2379  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 2374 class NormalizedValue < Struct.new( :value, :value_type) SENSITIVE = [] include Aws::Structure end  |