Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IngestedFilesSummary

import type { IngestedFilesSummary } from "https://aws-api.deno.dev/v0.4/services/lookoutequipment.ts?docs=full";

Gives statistics about how many files have been ingested, and which files have not been ingested, for a particular ingestion job.

interface IngestedFilesSummary {
DiscardedFiles?: S3Object[] | null;
IngestedNumberOfFiles: number;
TotalNumberOfFiles: number;
}

§Properties

§
DiscardedFiles?: S3Object[] | null
[src]

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.

§
IngestedNumberOfFiles: number
[src]

Indicates the number of files that were successfully ingested.

§
TotalNumberOfFiles: number
[src]

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