#[non_exhaustive]pub struct PredictionTimeRangeBuilder { /* private fields */ }
Expand description
A builder for PredictionTimeRange
.
Implementations§
source§impl PredictionTimeRangeBuilder
impl PredictionTimeRangeBuilder
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time range during which a metric limit is expected to be exceeded. This applies to proactive insights only.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time range during which a metric limit is expected to be exceeded. This applies to proactive insights only.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The time when the behavior in a proactive insight is expected to end.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The time when the behavior in a proactive insight is expected to end.
sourcepub fn build(self) -> PredictionTimeRange
pub fn build(self) -> PredictionTimeRange
Consumes the builder and constructs a PredictionTimeRange
.
Trait Implementations§
source§impl Clone for PredictionTimeRangeBuilder
impl Clone for PredictionTimeRangeBuilder
source§fn clone(&self) -> PredictionTimeRangeBuilder
fn clone(&self) -> PredictionTimeRangeBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PredictionTimeRangeBuilder
impl Debug for PredictionTimeRangeBuilder
source§impl Default for PredictionTimeRangeBuilder
impl Default for PredictionTimeRangeBuilder
source§fn default() -> PredictionTimeRangeBuilder
fn default() -> PredictionTimeRangeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PredictionTimeRangeBuilder> for PredictionTimeRangeBuilder
impl PartialEq<PredictionTimeRangeBuilder> for PredictionTimeRangeBuilder
source§fn eq(&self, other: &PredictionTimeRangeBuilder) -> bool
fn eq(&self, other: &PredictionTimeRangeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.