pub struct Builder { /* private fields */ }
Expand description
A builder for QueryRuntimeStatisticsTimeline
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 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 build(self) -> QueryRuntimeStatisticsTimeline
pub fn build(self) -> QueryRuntimeStatisticsTimeline
Consumes the builder and constructs a QueryRuntimeStatisticsTimeline
.