@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class IngestedFilesSummary extends Object implements Serializable, Cloneable, StructuredPojo
Gives statistics about how many files have been ingested, and which files have not been ingested, for a particular ingestion job.
Constructor and Description |
---|
IngestedFilesSummary() |
Modifier and Type | Method and Description |
---|---|
IngestedFilesSummary |
clone() |
boolean |
equals(Object obj) |
List<S3Object> |
getDiscardedFiles()
Indicates the number of files that were discarded.
|
Integer |
getIngestedNumberOfFiles()
Indicates the number of files that were successfully ingested.
|
Integer |
getTotalNumberOfFiles()
Indicates the total number of files that were submitted for ingestion.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setDiscardedFiles(Collection<S3Object> discardedFiles)
Indicates the number of files that were discarded.
|
void |
setIngestedNumberOfFiles(Integer ingestedNumberOfFiles)
Indicates the number of files that were successfully ingested.
|
void |
setTotalNumberOfFiles(Integer totalNumberOfFiles)
Indicates the total number of files that were submitted for ingestion.
|
String |
toString()
Returns a string representation of this object.
|
IngestedFilesSummary |
withDiscardedFiles(Collection<S3Object> discardedFiles)
Indicates the number of files that were discarded.
|
IngestedFilesSummary |
withDiscardedFiles(S3Object... discardedFiles)
Indicates the number of files that were discarded.
|
IngestedFilesSummary |
withIngestedNumberOfFiles(Integer ingestedNumberOfFiles)
Indicates the number of files that were successfully ingested.
|
IngestedFilesSummary |
withTotalNumberOfFiles(Integer totalNumberOfFiles)
Indicates the total number of files that were submitted for ingestion.
|
public void setTotalNumberOfFiles(Integer totalNumberOfFiles)
Indicates the total number of files that were submitted for ingestion.
totalNumberOfFiles
- Indicates the total number of files that were submitted for ingestion.public Integer getTotalNumberOfFiles()
Indicates the total number of files that were submitted for ingestion.
public IngestedFilesSummary withTotalNumberOfFiles(Integer totalNumberOfFiles)
Indicates the total number of files that were submitted for ingestion.
totalNumberOfFiles
- Indicates the total number of files that were submitted for ingestion.public void setIngestedNumberOfFiles(Integer ingestedNumberOfFiles)
Indicates the number of files that were successfully ingested.
ingestedNumberOfFiles
- Indicates the number of files that were successfully ingested.public Integer getIngestedNumberOfFiles()
Indicates the number of files that were successfully ingested.
public IngestedFilesSummary withIngestedNumberOfFiles(Integer ingestedNumberOfFiles)
Indicates the number of files that were successfully ingested.
ingestedNumberOfFiles
- Indicates the number of files that were successfully ingested.public List<S3Object> getDiscardedFiles()
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.
public void setDiscardedFiles(Collection<S3Object> discardedFiles)
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.
discardedFiles
- 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.public IngestedFilesSummary withDiscardedFiles(S3Object... discardedFiles)
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.
NOTE: This method appends the values to the existing list (if any). Use
setDiscardedFiles(java.util.Collection)
or withDiscardedFiles(java.util.Collection)
if you want
to override the existing values.
discardedFiles
- 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.public IngestedFilesSummary withDiscardedFiles(Collection<S3Object> discardedFiles)
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.
discardedFiles
- 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.public String toString()
toString
in class Object
Object.toString()
public IngestedFilesSummary clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.