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

DataSourceSyncJobMetrics

import type { DataSourceSyncJobMetrics } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Maps a batch delete document request to a specific data source sync job. This is optional and should only be supplied when documents are deleted by a data source connector.

interface DataSourceSyncJobMetrics {
DocumentsAdded?: string | null;
DocumentsDeleted?: string | null;
DocumentsFailed?: string | null;
DocumentsModified?: string | null;
DocumentsScanned?: string | null;
}

§Properties

§
DocumentsAdded?: string | null
[src]

The number of documents added from the data source up to now in the data source sync.

§
DocumentsDeleted?: string | null
[src]

The number of documents deleted from the data source up to now in the data source sync run.

§
DocumentsFailed?: string | null
[src]

The number of documents that failed to sync from the data source up to now in the data source sync run.

§
DocumentsModified?: string | null
[src]

The number of documents modified in the data source up to now in the data source sync run.

§
DocumentsScanned?: string | null
[src]

The current number of documents crawled by the current sync job in the data source.