Interface QueryRuntimeStatisticsRows.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryRuntimeStatisticsRows.Builder,QueryRuntimeStatisticsRows>,SdkBuilder<QueryRuntimeStatisticsRows.Builder,QueryRuntimeStatisticsRows>,SdkPojo
- Enclosing class:
- QueryRuntimeStatisticsRows
public static interface QueryRuntimeStatisticsRows.Builder extends SdkPojo, CopyableBuilder<QueryRuntimeStatisticsRows.Builder,QueryRuntimeStatisticsRows>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryRuntimeStatisticsRows.BuilderinputBytes(Long inputBytes)The number of bytes read to execute the query.QueryRuntimeStatisticsRows.BuilderinputRows(Long inputRows)The number of rows read to execute the query.QueryRuntimeStatisticsRows.BuilderoutputBytes(Long outputBytes)The number of bytes returned by the query.QueryRuntimeStatisticsRows.BuilderoutputRows(Long outputRows)The number of rows returned by 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
inputRows
QueryRuntimeStatisticsRows.Builder inputRows(Long inputRows)
The number of rows read to execute the query.
- Parameters:
inputRows- The number of rows read to execute the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputBytes
QueryRuntimeStatisticsRows.Builder inputBytes(Long inputBytes)
The number of bytes read to execute the query.
- Parameters:
inputBytes- The number of bytes read to execute the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputBytes
QueryRuntimeStatisticsRows.Builder outputBytes(Long outputBytes)
The number of bytes returned by the query.
- Parameters:
outputBytes- The number of bytes returned by the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputRows
QueryRuntimeStatisticsRows.Builder outputRows(Long outputRows)
The number of rows returned by the query.
- Parameters:
outputRows- The number of rows returned by the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-