Struct aws_sdk_timestreamquery::types::builders::QueryStatusBuilder
source · #[non_exhaustive]pub struct QueryStatusBuilder { /* private fields */ }
Expand description
A builder for QueryStatus
.
Implementations§
source§impl QueryStatusBuilder
impl QueryStatusBuilder
sourcepub fn progress_percentage(self, input: f64) -> Self
pub fn progress_percentage(self, input: f64) -> Self
The progress of the query, expressed as a percentage.
sourcepub fn set_progress_percentage(self, input: Option<f64>) -> Self
pub fn set_progress_percentage(self, input: Option<f64>) -> Self
The progress of the query, expressed as a percentage.
sourcepub fn get_progress_percentage(&self) -> &Option<f64>
pub fn get_progress_percentage(&self) -> &Option<f64>
The progress of the query, expressed as a percentage.
sourcepub fn cumulative_bytes_scanned(self, input: i64) -> Self
pub fn cumulative_bytes_scanned(self, input: i64) -> Self
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
sourcepub fn set_cumulative_bytes_scanned(self, input: Option<i64>) -> Self
pub fn set_cumulative_bytes_scanned(self, input: Option<i64>) -> Self
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
sourcepub fn get_cumulative_bytes_scanned(&self) -> &Option<i64>
pub fn get_cumulative_bytes_scanned(&self) -> &Option<i64>
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
sourcepub fn cumulative_bytes_metered(self, input: i64) -> Self
pub fn cumulative_bytes_metered(self, input: i64) -> Self
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.
sourcepub fn set_cumulative_bytes_metered(self, input: Option<i64>) -> Self
pub fn set_cumulative_bytes_metered(self, input: Option<i64>) -> Self
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.
sourcepub fn get_cumulative_bytes_metered(&self) -> &Option<i64>
pub fn get_cumulative_bytes_metered(&self) -> &Option<i64>
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.
sourcepub fn build(self) -> QueryStatus
pub fn build(self) -> QueryStatus
Consumes the builder and constructs a QueryStatus
.
Trait Implementations§
source§impl Clone for QueryStatusBuilder
impl Clone for QueryStatusBuilder
source§fn clone(&self) -> QueryStatusBuilder
fn clone(&self) -> QueryStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QueryStatusBuilder
impl Debug for QueryStatusBuilder
source§impl Default for QueryStatusBuilder
impl Default for QueryStatusBuilder
source§fn default() -> QueryStatusBuilder
fn default() -> QueryStatusBuilder
source§impl PartialEq<QueryStatusBuilder> for QueryStatusBuilder
impl PartialEq<QueryStatusBuilder> for QueryStatusBuilder
source§fn eq(&self, other: &QueryStatusBuilder) -> bool
fn eq(&self, other: &QueryStatusBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.