Class: Aws::ForecastService::Types::TimeSeriesTransformation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actionTypes::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.

Returns:



6877
6878
6879
6880
6881
6882
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 6877

class TimeSeriesTransformation < Struct.new(
  :action,
  :time_series_conditions)
  SENSITIVE = []
  include Aws::Structure
end

#time_series_conditionsArray<Types::TimeSeriesCondition>

An array of conditions that define which members of the related time series are transformed.

Returns:



6877
6878
6879
6880
6881
6882
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 6877

class TimeSeriesTransformation < Struct.new(
  :action,
  :time_series_conditions)
  SENSITIVE = []
  include Aws::Structure
end