[][src]Struct rusoto_kendra::DataSourceSyncJobMetrics

pub struct DataSourceSyncJobMetrics {
    pub documents_added: Option<String>,
    pub documents_deleted: Option<String>,
    pub documents_failed: Option<String>,
    pub documents_modified: Option<String>,
    pub documents_scanned: Option<String>,
}

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 connector.

Fields

documents_added: Option<String>

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

documents_deleted: Option<String>

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

documents_failed: Option<String>

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

documents_modified: Option<String>

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

documents_scanned: Option<String>

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

Trait Implementations

impl Clone for DataSourceSyncJobMetrics[src]

impl Debug for DataSourceSyncJobMetrics[src]

impl Default for DataSourceSyncJobMetrics[src]

impl<'de> Deserialize<'de> for DataSourceSyncJobMetrics[src]

impl PartialEq<DataSourceSyncJobMetrics> for DataSourceSyncJobMetrics[src]

impl StructuralPartialEq for DataSourceSyncJobMetrics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.