Interface IdMappingJobMetrics.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<IdMappingJobMetrics.Builder,
,IdMappingJobMetrics> SdkBuilder<IdMappingJobMetrics.Builder,
,IdMappingJobMetrics> SdkPojo
- Enclosing class:
IdMappingJobMetrics
@Mutable
@NotThreadSafe
public static interface IdMappingJobMetrics.Builder
extends SdkPojo, CopyableBuilder<IdMappingJobMetrics.Builder,IdMappingJobMetrics>
-
Method Summary
Modifier and TypeMethodDescriptioninputRecords
(Integer inputRecords) The total number of records that were input for processing.recordsNotProcessed
(Integer recordsNotProcessed) The total number of records that did not get processed.totalMappedRecords
(Integer totalMappedRecords) The total number of records that were mapped.totalMappedSourceRecords
(Integer totalMappedSourceRecords) The total number of mapped source records.totalMappedTargetRecords
(Integer totalMappedTargetRecords) The total number of distinct mapped target records.totalRecordsProcessed
(Integer totalRecordsProcessed) The total number of records that were processed.uniqueRecordsLoaded
(Integer uniqueRecordsLoaded) The number of records remaining after loading and aggregating duplicate records.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
inputRecords
The total number of records that were input for processing.
- Parameters:
inputRecords
- The total number of records that were input for processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalRecordsProcessed
The total number of records that were processed.
- Parameters:
totalRecordsProcessed
- The total number of records that were processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordsNotProcessed
The total number of records that did not get processed.
- Parameters:
recordsNotProcessed
- The total number of records that did not get processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalMappedRecords
The total number of records that were mapped.
- Parameters:
totalMappedRecords
- The total number of records that were mapped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalMappedSourceRecords
The total number of mapped source records.
- Parameters:
totalMappedSourceRecords
- The total number of mapped source records.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalMappedTargetRecords
The total number of distinct mapped target records.
- Parameters:
totalMappedTargetRecords
- The total number of distinct mapped target records.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uniqueRecordsLoaded
The number of records remaining after loading and aggregating duplicate records. Duplicates are determined by the field marked as UNIQUE_ID in your schema mapping - records sharing the same value in this field are considered duplicates. For example, if you specified "customer_id" as a UNIQUE_ID field and had three records with the same customer_id value, they would count as one unique record in this metric.
- Parameters:
uniqueRecordsLoaded
- The number of records remaining after loading and aggregating duplicate records. Duplicates are determined by the field marked as UNIQUE_ID in your schema mapping - records sharing the same value in this field are considered duplicates. For example, if you specified "customer_id" as a UNIQUE_ID field and had three records with the same customer_id value, they would count as one unique record in this metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-