Class: Aws::LookoutEquipment::Types::IngestedFilesSummary

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#discarded_filesArray<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.

Returns:



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_filesInteger

Indicates the number of files that were successfully ingested.

Returns:

  • (Integer)


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_filesInteger

Indicates the total number of files that were submitted for ingestion.

Returns:

  • (Integer)


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