#[non_exhaustive]pub struct QueryRuntimeStatisticsTimelineBuilder { /* private fields */ }Expand description
A builder for QueryRuntimeStatisticsTimeline.
Implementations§
source§impl QueryRuntimeStatisticsTimelineBuilder
impl QueryRuntimeStatisticsTimelineBuilder
sourcepub fn query_queue_time_in_millis(self, input: i64) -> Self
pub fn query_queue_time_in_millis(self, input: i64) -> Self
The number of milliseconds that the query was in your query queue waiting for resources. Note that if transient errors occur, Athena might automatically add the query back to the queue.
sourcepub fn set_query_queue_time_in_millis(self, input: Option<i64>) -> Self
pub fn set_query_queue_time_in_millis(self, input: Option<i64>) -> Self
The number of milliseconds that the query was in your query queue waiting for resources. Note that if transient errors occur, Athena might automatically add the query back to the queue.
sourcepub fn get_query_queue_time_in_millis(&self) -> &Option<i64>
pub fn get_query_queue_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that the query was in your query queue waiting for resources. Note that if transient errors occur, Athena might automatically add the query back to the queue.
sourcepub fn service_pre_processing_time_in_millis(self, input: i64) -> Self
pub fn service_pre_processing_time_in_millis(self, input: i64) -> Self
The number of milliseconds that Athena spends on preprocessing before it submits the query to the engine.
sourcepub fn set_service_pre_processing_time_in_millis(
self,
input: Option<i64>
) -> Self
pub fn set_service_pre_processing_time_in_millis( self, input: Option<i64> ) -> Self
The number of milliseconds that Athena spends on preprocessing before it submits the query to the engine.
sourcepub fn get_service_pre_processing_time_in_millis(&self) -> &Option<i64>
pub fn get_service_pre_processing_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that Athena spends on preprocessing before it submits the query to the engine.
sourcepub fn query_planning_time_in_millis(self, input: i64) -> Self
pub fn query_planning_time_in_millis(self, input: i64) -> Self
The number of milliseconds that Athena took to plan the query processing flow. This includes the time spent retrieving table partitions from the data source. Note that because the query engine performs the query planning, query planning time is a subset of engine processing time.
sourcepub fn set_query_planning_time_in_millis(self, input: Option<i64>) -> Self
pub fn set_query_planning_time_in_millis(self, input: Option<i64>) -> Self
The number of milliseconds that Athena took to plan the query processing flow. This includes the time spent retrieving table partitions from the data source. Note that because the query engine performs the query planning, query planning time is a subset of engine processing time.
sourcepub fn get_query_planning_time_in_millis(&self) -> &Option<i64>
pub fn get_query_planning_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that Athena took to plan the query processing flow. This includes the time spent retrieving table partitions from the data source. Note that because the query engine performs the query planning, query planning time is a subset of engine processing time.
sourcepub fn engine_execution_time_in_millis(self, input: i64) -> Self
pub fn engine_execution_time_in_millis(self, input: i64) -> Self
The number of milliseconds that the query took to execute.
sourcepub fn set_engine_execution_time_in_millis(self, input: Option<i64>) -> Self
pub fn set_engine_execution_time_in_millis(self, input: Option<i64>) -> Self
The number of milliseconds that the query took to execute.
sourcepub fn get_engine_execution_time_in_millis(&self) -> &Option<i64>
pub fn get_engine_execution_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that the query took to execute.
sourcepub fn service_processing_time_in_millis(self, input: i64) -> Self
pub fn service_processing_time_in_millis(self, input: i64) -> Self
The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.
sourcepub fn set_service_processing_time_in_millis(self, input: Option<i64>) -> Self
pub fn set_service_processing_time_in_millis(self, input: Option<i64>) -> Self
The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.
sourcepub fn get_service_processing_time_in_millis(&self) -> &Option<i64>
pub fn get_service_processing_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.
sourcepub fn total_execution_time_in_millis(self, input: i64) -> Self
pub fn total_execution_time_in_millis(self, input: i64) -> Self
The number of milliseconds that Athena took to run the query.
sourcepub fn set_total_execution_time_in_millis(self, input: Option<i64>) -> Self
pub fn set_total_execution_time_in_millis(self, input: Option<i64>) -> Self
The number of milliseconds that Athena took to run the query.
sourcepub fn get_total_execution_time_in_millis(&self) -> &Option<i64>
pub fn get_total_execution_time_in_millis(&self) -> &Option<i64>
The number of milliseconds that Athena took to run the query.
sourcepub fn build(self) -> QueryRuntimeStatisticsTimeline
pub fn build(self) -> QueryRuntimeStatisticsTimeline
Consumes the builder and constructs a QueryRuntimeStatisticsTimeline.
Trait Implementations§
source§impl Clone for QueryRuntimeStatisticsTimelineBuilder
impl Clone for QueryRuntimeStatisticsTimelineBuilder
source§fn clone(&self) -> QueryRuntimeStatisticsTimelineBuilder
fn clone(&self) -> QueryRuntimeStatisticsTimelineBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for QueryRuntimeStatisticsTimelineBuilder
impl Default for QueryRuntimeStatisticsTimelineBuilder
source§fn default() -> QueryRuntimeStatisticsTimelineBuilder
fn default() -> QueryRuntimeStatisticsTimelineBuilder
source§impl PartialEq for QueryRuntimeStatisticsTimelineBuilder
impl PartialEq for QueryRuntimeStatisticsTimelineBuilder
source§fn eq(&self, other: &QueryRuntimeStatisticsTimelineBuilder) -> bool
fn eq(&self, other: &QueryRuntimeStatisticsTimelineBuilder) -> bool
self and other values to be equal, and is used
by ==.