Interface ExecutionStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionStatistics.Builder,ExecutionStatistics>,SdkBuilder<ExecutionStatistics.Builder,ExecutionStatistics>,SdkPojo
- Enclosing class:
- ExecutionStatistics
public static interface ExecutionStatistics.Builder extends SdkPojo, CopyableBuilder<ExecutionStatistics.Builder,ExecutionStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionStatistics.BuilderaverageExecutionTimeMillis(Long averageExecutionTimeMillis)The average time the request took to be executed.ExecutionStatistics.BuilderdataScannedBytes(Long dataScannedBytes)The amount of data that was scanned in bytes.ExecutionStatistics.BuilderworkUnitsExecutedCount(Long workUnitsExecutedCount)The number of work units executed.-
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
-
averageExecutionTimeMillis
ExecutionStatistics.Builder averageExecutionTimeMillis(Long averageExecutionTimeMillis)
The average time the request took to be executed.
- Parameters:
averageExecutionTimeMillis- The average time the request took to be executed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataScannedBytes
ExecutionStatistics.Builder dataScannedBytes(Long dataScannedBytes)
The amount of data that was scanned in bytes.
- Parameters:
dataScannedBytes- The amount of data that was scanned in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workUnitsExecutedCount
ExecutionStatistics.Builder workUnitsExecutedCount(Long workUnitsExecutedCount)
The number of work units executed.
- Parameters:
workUnitsExecutedCount- The number of work units executed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-