Struct aws_sdk_timestreamquery::types::ExecutionStats
source · #[non_exhaustive]pub struct ExecutionStats {
pub execution_time_in_millis: i64,
pub data_writes: i64,
pub bytes_metered: i64,
pub records_ingested: i64,
pub query_result_rows: i64,
}
Expand description
Statistics for a single scheduled query run.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_time_in_millis: i64
Total time, measured in milliseconds, that was needed for the scheduled query run to complete.
data_writes: i64
Data writes metered for records ingested in a single scheduled query run.
bytes_metered: i64
Bytes metered for a single scheduled query run.
records_ingested: i64
The number of records ingested for a single scheduled query run.
query_result_rows: i64
Number of rows present in the output from running a query before ingestion to destination data source.
Implementations§
source§impl ExecutionStats
impl ExecutionStats
sourcepub fn execution_time_in_millis(&self) -> i64
pub fn execution_time_in_millis(&self) -> i64
Total time, measured in milliseconds, that was needed for the scheduled query run to complete.
sourcepub fn data_writes(&self) -> i64
pub fn data_writes(&self) -> i64
Data writes metered for records ingested in a single scheduled query run.
sourcepub fn bytes_metered(&self) -> i64
pub fn bytes_metered(&self) -> i64
Bytes metered for a single scheduled query run.
sourcepub fn records_ingested(&self) -> i64
pub fn records_ingested(&self) -> i64
The number of records ingested for a single scheduled query run.
sourcepub fn query_result_rows(&self) -> i64
pub fn query_result_rows(&self) -> i64
Number of rows present in the output from running a query before ingestion to destination data source.
source§impl ExecutionStats
impl ExecutionStats
sourcepub fn builder() -> ExecutionStatsBuilder
pub fn builder() -> ExecutionStatsBuilder
Creates a new builder-style object to manufacture ExecutionStats
.
Trait Implementations§
source§impl Clone for ExecutionStats
impl Clone for ExecutionStats
source§fn clone(&self) -> ExecutionStats
fn clone(&self) -> ExecutionStats
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExecutionStats
impl Debug for ExecutionStats
source§impl PartialEq<ExecutionStats> for ExecutionStats
impl PartialEq<ExecutionStats> for ExecutionStats
source§fn eq(&self, other: &ExecutionStats) -> bool
fn eq(&self, other: &ExecutionStats) -> bool
self
and other
values to be equal, and is used
by ==
.