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(Double bytesScanned)The total number of bytes in the log events scanned during the query.QueryStatistics.BuilderrecordsMatched(Double recordsMatched)The number of log events that matched the query string.QueryStatistics.BuilderrecordsScanned(Double recordsScanned)The total number of log events scanned during the 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
-
recordsMatched
QueryStatistics.Builder recordsMatched(Double recordsMatched)
The number of log events that matched the query string.
- Parameters:
recordsMatched- The number of log events that matched the query string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordsScanned
QueryStatistics.Builder recordsScanned(Double recordsScanned)
The total number of log events scanned during the query.
- Parameters:
recordsScanned- The total number of log events scanned during the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bytesScanned
QueryStatistics.Builder bytesScanned(Double bytesScanned)
The total number of bytes in the log events scanned during the query.
- Parameters:
bytesScanned- The total number of bytes in the log events scanned during the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-