Interface ExportStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportStatistics.Builder,ExportStatistics>,SdkBuilder<ExportStatistics.Builder,ExportStatistics>,SdkPojo
- Enclosing class:
- ExportStatistics
public static interface ExportStatistics.Builder extends SdkPojo, CopyableBuilder<ExportStatistics.Builder,ExportStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportStatistics.BuilderexportedRecordsCount(Integer exportedRecordsCount)The number of records that were exported to the final export file.ExportStatistics.BuilderprocessedRecordsCount(Integer processedRecordsCount)The number of records that were processed to generate the final export file.-
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, sdkFields
-
-
-
-
Method Detail
-
processedRecordsCount
ExportStatistics.Builder processedRecordsCount(Integer processedRecordsCount)
The number of records that were processed to generate the final export file.
- Parameters:
processedRecordsCount- The number of records that were processed to generate the final export file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportedRecordsCount
ExportStatistics.Builder exportedRecordsCount(Integer exportedRecordsCount)
The number of records that were exported to the final export file.
This value might not be available for all export source types
- Parameters:
exportedRecordsCount- The number of records that were exported to the final export file.This value might not be available for all export source types
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-