Interface PlanningStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PlanningStatistics.Builder,PlanningStatistics>,SdkBuilder<PlanningStatistics.Builder,PlanningStatistics>,SdkPojo
- Enclosing class:
- PlanningStatistics
public static interface PlanningStatistics.Builder extends SdkPojo, CopyableBuilder<PlanningStatistics.Builder,PlanningStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlanningStatistics.BuilderestimatedDataToScanBytes(Long estimatedDataToScanBytes)An estimate of the data that was scanned in bytes.PlanningStatistics.BuilderplanningTimeMillis(Long planningTimeMillis)The time that it took to process the request.PlanningStatistics.BuilderqueueTimeMillis(Long queueTimeMillis)The time the request was in queue to be processed.PlanningStatistics.BuilderworkUnitsGeneratedCount(Long workUnitsGeneratedCount)The number of work units generated.-
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
-
estimatedDataToScanBytes
PlanningStatistics.Builder estimatedDataToScanBytes(Long estimatedDataToScanBytes)
An estimate of the data that was scanned in bytes.
- Parameters:
estimatedDataToScanBytes- An estimate of the data that was scanned in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
planningTimeMillis
PlanningStatistics.Builder planningTimeMillis(Long planningTimeMillis)
The time that it took to process the request.
- Parameters:
planningTimeMillis- The time that it took to process the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queueTimeMillis
PlanningStatistics.Builder queueTimeMillis(Long queueTimeMillis)
The time the request was in queue to be processed.
- Parameters:
queueTimeMillis- The time the request was in queue to be processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workUnitsGeneratedCount
PlanningStatistics.Builder workUnitsGeneratedCount(Long workUnitsGeneratedCount)
The number of work units generated.
- Parameters:
workUnitsGeneratedCount- The number of work units generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-