libZSservicesZSamazonka-forecastZSamazonka-forecast
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Forecast.Types.PredictorExecution

Description

 
Synopsis

Documentation

data PredictorExecution Source #

The algorithm used to perform a backtest and the status of those tests.

See: newPredictorExecution smart constructor.

Constructors

PredictorExecution' 

Fields

Instances

Instances details
Eq PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

Read PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

Show PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

Generic PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

Associated Types

type Rep PredictorExecution :: Type -> Type #

NFData PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

Methods

rnf :: PredictorExecution -> () #

Hashable PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

FromJSON PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

type Rep PredictorExecution Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecution

type Rep PredictorExecution = D1 ('MetaData "PredictorExecution" "Amazonka.Forecast.Types.PredictorExecution" "libZSservicesZSamazonka-forecastZSamazonka-forecast" 'False) (C1 ('MetaCons "PredictorExecution'" 'PrefixI 'True) (S1 ('MetaSel ('Just "algorithmArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "testWindows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [TestWindowSummary]))))

newPredictorExecution :: PredictorExecution Source #

Create a value of PredictorExecution with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:algorithmArn:PredictorExecution', predictorExecution_algorithmArn - The ARN of the algorithm used to test the predictor.

$sel:testWindows:PredictorExecution', predictorExecution_testWindows - An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

predictorExecution_algorithmArn :: Lens' PredictorExecution (Maybe Text) Source #

The ARN of the algorithm used to test the predictor.

predictorExecution_testWindows :: Lens' PredictorExecution (Maybe [TestWindowSummary]) Source #

An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.