Interface RowInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RowInfo.Builder,RowInfo>,SdkBuilder<RowInfo.Builder,RowInfo>,SdkPojo
- Enclosing class:
- RowInfo
public static interface RowInfo.Builder extends SdkPojo, CopyableBuilder<RowInfo.Builder,RowInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowInfo.BuilderrowsDropped(Long rowsDropped)The number of rows that were not ingested.RowInfo.BuilderrowsIngested(Long rowsIngested)The number of rows that were ingested.RowInfo.BuildertotalRowsInDataset(Long totalRowsInDataset)The total number of rows in the dataset.-
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
-
rowsIngested
RowInfo.Builder rowsIngested(Long rowsIngested)
The number of rows that were ingested.
- Parameters:
rowsIngested- The number of rows that were ingested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rowsDropped
RowInfo.Builder rowsDropped(Long rowsDropped)
The number of rows that were not ingested.
- Parameters:
rowsDropped- The number of rows that were not ingested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalRowsInDataset
RowInfo.Builder totalRowsInDataset(Long totalRowsInDataset)
The total number of rows in the dataset.
- Parameters:
totalRowsInDataset- The total number of rows in the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-