Class: Aws::LookoutEquipment::Types::IngestedFilesSummary
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::LookoutEquipment::Types::IngestedFilesSummary
 
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
Gives statistics about how many files have been ingested, and which files have not been ingested, for a particular ingestion job.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #discarded_files  ⇒ Array<Types::S3Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates the number of files that were discarded. 
- 
  
    
      #ingested_number_of_files  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates the number of files that were successfully ingested. 
- 
  
    
      #total_number_of_files  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates the total number of files that were submitted for ingestion. 
Instance Attribute Details
#discarded_files ⇒ Array<Types::S3Object>
Indicates the number of files that were discarded. A file could be discarded because its format is invalid (for example, a jpg or pdf) or not readable.
| 2531 2532 2533 2534 2535 2536 2537 | # File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2531 class IngestedFilesSummary < Struct.new( :total_number_of_files, :ingested_number_of_files, :discarded_files) SENSITIVE = [] include Aws::Structure end | 
#ingested_number_of_files ⇒ Integer
Indicates the number of files that were successfully ingested.
| 2531 2532 2533 2534 2535 2536 2537 | # File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2531 class IngestedFilesSummary < Struct.new( :total_number_of_files, :ingested_number_of_files, :discarded_files) SENSITIVE = [] include Aws::Structure end | 
#total_number_of_files ⇒ Integer
Indicates the total number of files that were submitted for ingestion.
| 2531 2532 2533 2534 2535 2536 2537 | # File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 2531 class IngestedFilesSummary < Struct.new( :total_number_of_files, :ingested_number_of_files, :discarded_files) SENSITIVE = [] include Aws::Structure end |