#[non_exhaustive]pub struct SummaryMetricQueryResultBuilder { /* private fields */ }Expand description
A builder for SummaryMetricQueryResult.
Implementations§
source§impl SummaryMetricQueryResultBuilder
impl SummaryMetricQueryResultBuilder
sourcepub fn set_query_id(self, input: Option<String>) -> Self
pub fn set_query_id(self, input: Option<String>) -> Self
The id of the query.
sourcepub fn get_query_id(&self) -> &Option<String>
pub fn get_query_id(&self) -> &Option<String>
The id of the query.
sourcepub fn query_status(self, input: MetricQueryStatus) -> Self
pub fn query_status(self, input: MetricQueryStatus) -> Self
The status of the metric query.
sourcepub fn set_query_status(self, input: Option<MetricQueryStatus>) -> Self
pub fn set_query_status(self, input: Option<MetricQueryStatus>) -> Self
The status of the metric query.
sourcepub fn get_query_status(&self) -> &Option<MetricQueryStatus>
pub fn get_query_status(&self) -> &Option<MetricQueryStatus>
The status of the metric query.
sourcepub fn error(self, input: impl Into<String>) -> Self
pub fn error(self, input: impl Into<String>) -> Self
The error message for the summary metric query.
sourcepub fn set_error(self, input: Option<String>) -> Self
pub fn set_error(self, input: Option<String>) -> Self
The error message for the summary metric query.
sourcepub fn metric_name(self, input: MetricName) -> Self
pub fn metric_name(self, input: MetricName) -> Self
The name of the metric.
sourcepub fn set_metric_name(self, input: Option<MetricName>) -> Self
pub fn set_metric_name(self, input: Option<MetricName>) -> Self
The name of the metric.
sourcepub fn get_metric_name(&self) -> &Option<MetricName>
pub fn get_metric_name(&self) -> &Option<MetricName>
The name of the metric.
sourcepub fn dimensions(self, input: Dimension) -> Self
pub fn dimensions(self, input: Dimension) -> Self
Appends an item to dimensions.
To override the contents of this collection use set_dimensions.
The dimensions of the metric.
sourcepub fn set_dimensions(self, input: Option<Vec<Dimension>>) -> Self
pub fn set_dimensions(self, input: Option<Vec<Dimension>>) -> Self
The dimensions of the metric.
sourcepub fn get_dimensions(&self) -> &Option<Vec<Dimension>>
pub fn get_dimensions(&self) -> &Option<Vec<Dimension>>
The dimensions of the metric.
sourcepub fn aggregation_period(self, input: AggregationPeriod) -> Self
pub fn aggregation_period(self, input: AggregationPeriod) -> Self
The aggregation period of the metric.
sourcepub fn set_aggregation_period(self, input: Option<AggregationPeriod>) -> Self
pub fn set_aggregation_period(self, input: Option<AggregationPeriod>) -> Self
The aggregation period of the metric.
sourcepub fn get_aggregation_period(&self) -> &Option<AggregationPeriod>
pub fn get_aggregation_period(&self) -> &Option<AggregationPeriod>
The aggregation period of the metric.
sourcepub fn start_timestamp(self, input: DateTime) -> Self
pub fn start_timestamp(self, input: DateTime) -> Self
The start timestamp for summary metric query.
sourcepub fn set_start_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_start_timestamp(self, input: Option<DateTime>) -> Self
The start timestamp for summary metric query.
sourcepub fn get_start_timestamp(&self) -> &Option<DateTime>
pub fn get_start_timestamp(&self) -> &Option<DateTime>
The start timestamp for summary metric query.
sourcepub fn end_timestamp(self, input: DateTime) -> Self
pub fn end_timestamp(self, input: DateTime) -> Self
The end timestamp for summary metric query.
sourcepub fn set_end_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_end_timestamp(self, input: Option<DateTime>) -> Self
The end timestamp for summary metric query.
sourcepub fn get_end_timestamp(&self) -> &Option<DateTime>
pub fn get_end_timestamp(&self) -> &Option<DateTime>
The end timestamp for summary metric query.
sourcepub fn timestamps(self, input: DateTime) -> Self
pub fn timestamps(self, input: DateTime) -> Self
Appends an item to timestamps.
To override the contents of this collection use set_timestamps.
The timestamp of each aggregation result.
sourcepub fn set_timestamps(self, input: Option<Vec<DateTime>>) -> Self
pub fn set_timestamps(self, input: Option<Vec<DateTime>>) -> Self
The timestamp of each aggregation result.
sourcepub fn get_timestamps(&self) -> &Option<Vec<DateTime>>
pub fn get_timestamps(&self) -> &Option<Vec<DateTime>>
The timestamp of each aggregation result.
sourcepub fn values(self, input: MetricQueryValue) -> Self
pub fn values(self, input: MetricQueryValue) -> Self
Appends an item to values.
To override the contents of this collection use set_values.
The list of aggregated metrics.
sourcepub fn set_values(self, input: Option<Vec<MetricQueryValue>>) -> Self
pub fn set_values(self, input: Option<Vec<MetricQueryValue>>) -> Self
The list of aggregated metrics.
sourcepub fn get_values(&self) -> &Option<Vec<MetricQueryValue>>
pub fn get_values(&self) -> &Option<Vec<MetricQueryValue>>
The list of aggregated metrics.
sourcepub fn unit(self, input: impl Into<String>) -> Self
pub fn unit(self, input: impl Into<String>) -> Self
The units of measurement to be used for interpreting the aggregation result.
sourcepub fn set_unit(self, input: Option<String>) -> Self
pub fn set_unit(self, input: Option<String>) -> Self
The units of measurement to be used for interpreting the aggregation result.
sourcepub fn get_unit(&self) -> &Option<String>
pub fn get_unit(&self) -> &Option<String>
The units of measurement to be used for interpreting the aggregation result.
sourcepub fn build(self) -> SummaryMetricQueryResult
pub fn build(self) -> SummaryMetricQueryResult
Consumes the builder and constructs a SummaryMetricQueryResult.
Trait Implementations§
source§impl Clone for SummaryMetricQueryResultBuilder
impl Clone for SummaryMetricQueryResultBuilder
source§fn clone(&self) -> SummaryMetricQueryResultBuilder
fn clone(&self) -> SummaryMetricQueryResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SummaryMetricQueryResultBuilder
impl Default for SummaryMetricQueryResultBuilder
source§fn default() -> SummaryMetricQueryResultBuilder
fn default() -> SummaryMetricQueryResultBuilder
source§impl PartialEq for SummaryMetricQueryResultBuilder
impl PartialEq for SummaryMetricQueryResultBuilder
source§fn eq(&self, other: &SummaryMetricQueryResultBuilder) -> bool
fn eq(&self, other: &SummaryMetricQueryResultBuilder) -> bool
self and other values to be equal, and is used
by ==.