Interface QueryStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryStatistics.Builder,QueryStatistics>,SdkBuilder<QueryStatistics.Builder,QueryStatistics>,SdkPojo
- Enclosing class:
- QueryStatistics
public static interface QueryStatistics.Builder extends SdkPojo, CopyableBuilder<QueryStatistics.Builder,QueryStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryStatistics.BuilderbytesScanned(Long bytesScanned)The total bytes that the query scanned in the event data store.QueryStatistics.BuilderresultsCount(Integer resultsCount)The number of results returned.QueryStatistics.BuildertotalResultsCount(Integer totalResultsCount)The total number of results returned by a query.-
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
-
resultsCount
QueryStatistics.Builder resultsCount(Integer resultsCount)
The number of results returned.
- Parameters:
resultsCount- The number of results returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalResultsCount
QueryStatistics.Builder totalResultsCount(Integer totalResultsCount)
The total number of results returned by a query.
- Parameters:
totalResultsCount- The total number of results returned by a query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bytesScanned
QueryStatistics.Builder bytesScanned(Long bytesScanned)
The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.
- Parameters:
bytesScanned- The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-