Interface CurrentSearchProgress.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CurrentSearchProgress.Builder,CurrentSearchProgress>,SdkBuilder<CurrentSearchProgress.Builder,CurrentSearchProgress>,SdkPojo
- Enclosing class:
- CurrentSearchProgress
public static interface CurrentSearchProgress.Builder extends SdkPojo, CopyableBuilder<CurrentSearchProgress.Builder,CurrentSearchProgress>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CurrentSearchProgress.BuilderitemsMatchedCount(Long itemsMatchedCount)This number is the sum of all items that match the item filters in a search job in progress.CurrentSearchProgress.BuilderitemsScannedCount(Long itemsScannedCount)This number is the sum of all items that have been scanned so far during a search job.CurrentSearchProgress.BuilderrecoveryPointsScannedCount(Integer recoveryPointsScannedCount)This number is the sum of all backups that have been scanned so far during a search job.-
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 Detail
-
recoveryPointsScannedCount
CurrentSearchProgress.Builder recoveryPointsScannedCount(Integer recoveryPointsScannedCount)
This number is the sum of all backups that have been scanned so far during a search job.
- Parameters:
recoveryPointsScannedCount- This number is the sum of all backups that have been scanned so far during a search job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
itemsScannedCount
CurrentSearchProgress.Builder itemsScannedCount(Long itemsScannedCount)
This number is the sum of all items that have been scanned so far during a search job.
- Parameters:
itemsScannedCount- This number is the sum of all items that have been scanned so far during a search job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
itemsMatchedCount
CurrentSearchProgress.Builder itemsMatchedCount(Long itemsMatchedCount)
This number is the sum of all items that match the item filters in a search job in progress.
- Parameters:
itemsMatchedCount- This number is the sum of all items that match the item filters in a search job in progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-