Struct aws_sdk_athena::model::QueryRuntimeStatistics
source · #[non_exhaustive]pub struct QueryRuntimeStatistics { /* private fields */ }
Expand description
The query execution timeline, statistics on input and output rows and bytes, and the different query stages that form the query execution plan.
Implementations§
source§impl QueryRuntimeStatistics
impl QueryRuntimeStatistics
sourcepub fn timeline(&self) -> Option<&QueryRuntimeStatisticsTimeline>
pub fn timeline(&self) -> Option<&QueryRuntimeStatisticsTimeline>
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
sourcepub fn rows(&self) -> Option<&QueryRuntimeStatisticsRows>
pub fn rows(&self) -> Option<&QueryRuntimeStatisticsRows>
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) -> Option<&QueryStage>
pub fn output_stage(&self) -> Option<&QueryStage>
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.
source§impl QueryRuntimeStatistics
impl QueryRuntimeStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture QueryRuntimeStatistics
.
Trait Implementations§
source§impl Clone for QueryRuntimeStatistics
impl Clone for QueryRuntimeStatistics
source§fn clone(&self) -> QueryRuntimeStatistics
fn clone(&self) -> QueryRuntimeStatistics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for QueryRuntimeStatistics
impl Debug for QueryRuntimeStatistics
source§impl PartialEq<QueryRuntimeStatistics> for QueryRuntimeStatistics
impl PartialEq<QueryRuntimeStatistics> for QueryRuntimeStatistics
source§fn eq(&self, other: &QueryRuntimeStatistics) -> bool
fn eq(&self, other: &QueryRuntimeStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.