Class: Aws::Comprehend::Types::DocumentMetadata
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Comprehend::Types::DocumentMetadata
 
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Information about the document, discovered during text extraction.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #extracted_characters  ⇒ Array<Types::ExtractedCharactersListItem> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of pages in the document, with the number of characters extracted from each page. 
- 
  
    
      #pages  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of pages in the document. 
Instance Attribute Details
#extracted_characters ⇒ Array<Types::ExtractedCharactersListItem>
List of pages in the document, with the number of characters extracted from each page.
| 3357 3358 3359 3360 3361 3362 | # File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3357 class DocumentMetadata < Struct.new( :pages, :extracted_characters) SENSITIVE = [] include Aws::Structure end | 
#pages ⇒ Integer
Number of pages in the document.
| 3357 3358 3359 3360 3361 3362 | # File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3357 class DocumentMetadata < Struct.new( :pages, :extracted_characters) SENSITIVE = [] include Aws::Structure end |