Struct aws_sdk_forecast::model::TimeSeriesTransformation
source · #[non_exhaustive]pub struct TimeSeriesTransformation { /* private fields */ }Expand description
A transformation function is a pair of operations that select and modify the rows in a related time series. You select the rows that you want with a condition operation and you modify the rows with a transformation operation. All conditions are joined with an AND operation, meaning that all conditions must be true for the transformation to be applied. Transformations are applied in the order that they are listed.
Implementations§
source§impl TimeSeriesTransformation
impl TimeSeriesTransformation
sourcepub fn action(&self) -> Option<&Action>
pub fn action(&self) -> Option<&Action>
An array of actions that define a time series and how it is transformed. These transformations create a new time series that is used for the what-if analysis.
sourcepub fn time_series_conditions(&self) -> Option<&[TimeSeriesCondition]>
pub fn time_series_conditions(&self) -> Option<&[TimeSeriesCondition]>
An array of conditions that define which members of the related time series are transformed.
source§impl TimeSeriesTransformation
impl TimeSeriesTransformation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TimeSeriesTransformation.
Trait Implementations§
source§impl Clone for TimeSeriesTransformation
impl Clone for TimeSeriesTransformation
source§fn clone(&self) -> TimeSeriesTransformation
fn clone(&self) -> TimeSeriesTransformation
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 TimeSeriesTransformation
impl Debug for TimeSeriesTransformation
source§impl PartialEq<TimeSeriesTransformation> for TimeSeriesTransformation
impl PartialEq<TimeSeriesTransformation> for TimeSeriesTransformation
source§fn eq(&self, other: &TimeSeriesTransformation) -> bool
fn eq(&self, other: &TimeSeriesTransformation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.