Interface QueryStatisticsForDescribeQuery.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryStatisticsForDescribeQuery.Builder,QueryStatisticsForDescribeQuery>,SdkBuilder<QueryStatisticsForDescribeQuery.Builder,QueryStatisticsForDescribeQuery>,SdkPojo
- Enclosing class:
- QueryStatisticsForDescribeQuery
public static interface QueryStatisticsForDescribeQuery.Builder extends SdkPojo, CopyableBuilder<QueryStatisticsForDescribeQuery.Builder,QueryStatisticsForDescribeQuery>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryStatisticsForDescribeQuery.BuilderbytesScanned(Long bytesScanned)The total bytes that the query scanned in the event data store.QueryStatisticsForDescribeQuery.BuildercreationTime(Instant creationTime)The creation time of the query.QueryStatisticsForDescribeQuery.BuildereventsMatched(Long eventsMatched)The number of events that matched a query.QueryStatisticsForDescribeQuery.BuildereventsScanned(Long eventsScanned)The number of events that the query scanned in the event data store.QueryStatisticsForDescribeQuery.BuilderexecutionTimeInMillis(Integer executionTimeInMillis)The query's run time, in milliseconds.-
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
-
eventsMatched
QueryStatisticsForDescribeQuery.Builder eventsMatched(Long eventsMatched)
The number of events that matched a query.
- Parameters:
eventsMatched- The number of events that matched a query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventsScanned
QueryStatisticsForDescribeQuery.Builder eventsScanned(Long eventsScanned)
The number of events that the query scanned in the event data store.
- Parameters:
eventsScanned- The number of events that the query scanned in the event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bytesScanned
QueryStatisticsForDescribeQuery.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.
-
executionTimeInMillis
QueryStatisticsForDescribeQuery.Builder executionTimeInMillis(Integer executionTimeInMillis)
The query's run time, in milliseconds.
- Parameters:
executionTimeInMillis- The query's run time, in milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
QueryStatisticsForDescribeQuery.Builder creationTime(Instant creationTime)
The creation time of the query.
- Parameters:
creationTime- The creation time of the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-