Struct aws_sdk_qbusiness::types::DataSourceSyncJobMetrics
source · #[non_exhaustive]pub struct DataSourceSyncJobMetrics {
pub documents_added: Option<String>,
pub documents_modified: Option<String>,
pub documents_deleted: Option<String>,
pub documents_failed: Option<String>,
pub documents_scanned: Option<String>,
}Expand description
Maps a batch delete document request to a specific Amazon Q data source connector sync job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.documents_added: Option<String>The current count of documents added from the data source during the data source sync.
documents_modified: Option<String>The current count of documents modified in the data source during the data source sync.
documents_deleted: Option<String>The current count of documents deleted from the data source during the data source sync.
documents_failed: Option<String>The current count of documents that failed to sync from the data source during the data source sync.
documents_scanned: Option<String>The current count of documents crawled by the ongoing sync job in the data source.
Implementations§
source§impl DataSourceSyncJobMetrics
impl DataSourceSyncJobMetrics
sourcepub fn documents_added(&self) -> Option<&str>
pub fn documents_added(&self) -> Option<&str>
The current count of documents added from the data source during the data source sync.
sourcepub fn documents_modified(&self) -> Option<&str>
pub fn documents_modified(&self) -> Option<&str>
The current count of documents modified in the data source during the data source sync.
sourcepub fn documents_deleted(&self) -> Option<&str>
pub fn documents_deleted(&self) -> Option<&str>
The current count of documents deleted from the data source during the data source sync.
sourcepub fn documents_failed(&self) -> Option<&str>
pub fn documents_failed(&self) -> Option<&str>
The current count of documents that failed to sync from the data source during the data source sync.
sourcepub fn documents_scanned(&self) -> Option<&str>
pub fn documents_scanned(&self) -> Option<&str>
The current count of documents crawled by the ongoing sync job in the data source.
source§impl DataSourceSyncJobMetrics
impl DataSourceSyncJobMetrics
sourcepub fn builder() -> DataSourceSyncJobMetricsBuilder
pub fn builder() -> DataSourceSyncJobMetricsBuilder
Creates a new builder-style object to manufacture DataSourceSyncJobMetrics.
Trait Implementations§
source§impl Clone for DataSourceSyncJobMetrics
impl Clone for DataSourceSyncJobMetrics
source§fn clone(&self) -> DataSourceSyncJobMetrics
fn clone(&self) -> DataSourceSyncJobMetrics
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataSourceSyncJobMetrics
impl Debug for DataSourceSyncJobMetrics
source§impl PartialEq for DataSourceSyncJobMetrics
impl PartialEq for DataSourceSyncJobMetrics
source§fn eq(&self, other: &DataSourceSyncJobMetrics) -> bool
fn eq(&self, other: &DataSourceSyncJobMetrics) -> bool
self and other values to be equal, and is used
by ==.