Struct aws_sdk_athena::model::query_runtime_statistics::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for QueryRuntimeStatistics
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn timeline(self, input: QueryRuntimeStatisticsTimeline) -> Self
pub fn timeline(self, input: QueryRuntimeStatisticsTimeline) -> Self
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
sourcepub fn set_timeline(self, input: Option<QueryRuntimeStatisticsTimeline>) -> Self
pub fn set_timeline(self, input: Option<QueryRuntimeStatisticsTimeline>) -> Self
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
sourcepub fn rows(self, input: QueryRuntimeStatisticsRows) -> Self
pub fn rows(self, input: QueryRuntimeStatisticsRows) -> Self
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
sourcepub fn set_rows(self, input: Option<QueryRuntimeStatisticsRows>) -> Self
pub fn set_rows(self, input: Option<QueryRuntimeStatisticsRows>) -> Self
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
sourcepub fn output_stage(self, input: QueryStage) -> Self
pub fn output_stage(self, input: QueryStage) -> Self
Stage statistics such as input and output rows and bytes, execution time, and stage state. This information also includes substages and the query stage plan.
sourcepub fn set_output_stage(self, input: Option<QueryStage>) -> Self
pub fn set_output_stage(self, input: Option<QueryStage>) -> Self
Stage statistics such as input and output rows and bytes, execution time, and stage state. This information also includes substages and the query stage plan.
sourcepub fn build(self) -> QueryRuntimeStatistics
pub fn build(self) -> QueryRuntimeStatistics
Consumes the builder and constructs a QueryRuntimeStatistics
.