Struct aws_sdk_entityresolution::types::JobMetrics
source · #[non_exhaustive]pub struct JobMetrics {
pub input_records: Option<i32>,
pub total_records_processed: Option<i32>,
pub records_not_processed: Option<i32>,
pub match_ids: Option<i32>,
}
Expand description
An object containing InputRecords
, TotalRecordsProcessed
, MatchIDs
, and RecordsNotProcessed
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.input_records: Option<i32>
The total number of input records.
total_records_processed: Option<i32>
The total number of records processed.
records_not_processed: Option<i32>
The total number of records that did not get processed.
match_ids: Option<i32>
The total number of matchID
s generated.
Implementations§
source§impl JobMetrics
impl JobMetrics
sourcepub fn input_records(&self) -> Option<i32>
pub fn input_records(&self) -> Option<i32>
The total number of input records.
sourcepub fn total_records_processed(&self) -> Option<i32>
pub fn total_records_processed(&self) -> Option<i32>
The total number of records processed.
sourcepub fn records_not_processed(&self) -> Option<i32>
pub fn records_not_processed(&self) -> Option<i32>
The total number of records that did not get processed.
source§impl JobMetrics
impl JobMetrics
sourcepub fn builder() -> JobMetricsBuilder
pub fn builder() -> JobMetricsBuilder
Creates a new builder-style object to manufacture JobMetrics
.
Trait Implementations§
source§impl Clone for JobMetrics
impl Clone for JobMetrics
source§fn clone(&self) -> JobMetrics
fn clone(&self) -> JobMetrics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for JobMetrics
impl Debug for JobMetrics
source§impl PartialEq for JobMetrics
impl PartialEq for JobMetrics
source§fn eq(&self, other: &JobMetrics) -> bool
fn eq(&self, other: &JobMetrics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for JobMetrics
Auto Trait Implementations§
impl RefUnwindSafe for JobMetrics
impl Send for JobMetrics
impl Sync for JobMetrics
impl Unpin for JobMetrics
impl UnwindSafe for JobMetrics
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.