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.EvaluationResult

Description

 
Synopsis

Documentation

data EvaluationResult Source #

The results of evaluating an algorithm. Returned as part of the GetAccuracyMetrics response.

See: newEvaluationResult smart constructor.

Constructors

EvaluationResult' 

Fields

  • algorithmArn :: Maybe Text

    The Amazon Resource Name (ARN) of the algorithm that was evaluated.

  • testWindows :: Maybe [WindowSummary]

    The array of test windows used for evaluating the algorithm. The NumberOfBacktestWindows from the EvaluationParameters object determines the number of windows in the array.

Instances

Instances details
Eq EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

Read EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

Show EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

Generic EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

Associated Types

type Rep EvaluationResult :: Type -> Type #

NFData EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

Methods

rnf :: EvaluationResult -> () #

Hashable EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

FromJSON EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

type Rep EvaluationResult Source # 
Instance details

Defined in Amazonka.Forecast.Types.EvaluationResult

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

newEvaluationResult :: EvaluationResult Source #

Create a value of EvaluationResult 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:EvaluationResult', evaluationResult_algorithmArn - The Amazon Resource Name (ARN) of the algorithm that was evaluated.

$sel:testWindows:EvaluationResult', evaluationResult_testWindows - The array of test windows used for evaluating the algorithm. The NumberOfBacktestWindows from the EvaluationParameters object determines the number of windows in the array.

evaluationResult_algorithmArn :: Lens' EvaluationResult (Maybe Text) Source #

The Amazon Resource Name (ARN) of the algorithm that was evaluated.

evaluationResult_testWindows :: Lens' EvaluationResult (Maybe [WindowSummary]) Source #

The array of test windows used for evaluating the algorithm. The NumberOfBacktestWindows from the EvaluationParameters object determines the number of windows in the array.