{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.IoTEvents.Types.AnalysisResultLocation -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.IoTEvents.Types.AnalysisResultLocation where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Contains information that you can use to locate the field in your -- detector model that the analysis result references. -- -- /See:/ 'newAnalysisResultLocation' smart constructor. data AnalysisResultLocation = AnalysisResultLocation' { -- | A expression that -- identifies the error field in your detector model. path :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AnalysisResultLocation' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'path', 'analysisResultLocation_path' - A expression that -- identifies the error field in your detector model. newAnalysisResultLocation :: AnalysisResultLocation newAnalysisResultLocation = AnalysisResultLocation' {path = Prelude.Nothing} -- | A expression that -- identifies the error field in your detector model. analysisResultLocation_path :: Lens.Lens' AnalysisResultLocation (Prelude.Maybe Prelude.Text) analysisResultLocation_path = Lens.lens (\AnalysisResultLocation' {path} -> path) (\s@AnalysisResultLocation' {} a -> s {path = a} :: AnalysisResultLocation) instance Data.FromJSON AnalysisResultLocation where parseJSON = Data.withObject "AnalysisResultLocation" ( \x -> AnalysisResultLocation' Prelude.<$> (x Data..:? "path") ) instance Prelude.Hashable AnalysisResultLocation where hashWithSalt _salt AnalysisResultLocation' {..} = _salt `Prelude.hashWithSalt` path instance Prelude.NFData AnalysisResultLocation where rnf AnalysisResultLocation' {..} = Prelude.rnf path