amazonka-codeguruprofiler-2.0: gen/Amazonka/CodeGuruProfiler/Types/UserFeedback.hs
{-# 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.CodeGuruProfiler.Types.UserFeedback
-- 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.CodeGuruProfiler.Types.UserFeedback where
import Amazonka.CodeGuruProfiler.Types.FeedbackType
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
-- | Feedback that can be submitted for each instance of an anomaly by the
-- user. Feedback is be used for improvements in generating recommendations
-- for the application.
--
-- /See:/ 'newUserFeedback' smart constructor.
data UserFeedback = UserFeedback'
{ -- | Optional @Positive@ or @Negative@ feedback submitted by the user about
-- whether the recommendation is useful or not.
type' :: FeedbackType
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'UserFeedback' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'type'', 'userFeedback_type' - Optional @Positive@ or @Negative@ feedback submitted by the user about
-- whether the recommendation is useful or not.
newUserFeedback ::
-- | 'type''
FeedbackType ->
UserFeedback
newUserFeedback pType_ =
UserFeedback' {type' = pType_}
-- | Optional @Positive@ or @Negative@ feedback submitted by the user about
-- whether the recommendation is useful or not.
userFeedback_type :: Lens.Lens' UserFeedback FeedbackType
userFeedback_type = Lens.lens (\UserFeedback' {type'} -> type') (\s@UserFeedback' {} a -> s {type' = a} :: UserFeedback)
instance Data.FromJSON UserFeedback where
parseJSON =
Data.withObject
"UserFeedback"
(\x -> UserFeedback' Prelude.<$> (x Data..: "type"))
instance Prelude.Hashable UserFeedback where
hashWithSalt _salt UserFeedback' {..} =
_salt `Prelude.hashWithSalt` type'
instance Prelude.NFData UserFeedback where
rnf UserFeedback' {..} = Prelude.rnf type'