{-# 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.Kendra.Types.Suggestion -- 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.Kendra.Types.Suggestion where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Kendra.Types.SuggestionValue import qualified Amazonka.Prelude as Prelude -- | A single query suggestion. -- -- /See:/ 'newSuggestion' smart constructor. data Suggestion = Suggestion' { -- | The UUID (universally unique identifier) of a single query suggestion. id :: Prelude.Maybe Prelude.Text, -- | The value for the UUID (universally unique identifier) of a single query -- suggestion. -- -- The value is the text string of a suggestion. value :: Prelude.Maybe SuggestionValue } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Suggestion' 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: -- -- 'id', 'suggestion_id' - The UUID (universally unique identifier) of a single query suggestion. -- -- 'value', 'suggestion_value' - The value for the UUID (universally unique identifier) of a single query -- suggestion. -- -- The value is the text string of a suggestion. newSuggestion :: Suggestion newSuggestion = Suggestion' { id = Prelude.Nothing, value = Prelude.Nothing } -- | The UUID (universally unique identifier) of a single query suggestion. suggestion_id :: Lens.Lens' Suggestion (Prelude.Maybe Prelude.Text) suggestion_id = Lens.lens (\Suggestion' {id} -> id) (\s@Suggestion' {} a -> s {id = a} :: Suggestion) -- | The value for the UUID (universally unique identifier) of a single query -- suggestion. -- -- The value is the text string of a suggestion. suggestion_value :: Lens.Lens' Suggestion (Prelude.Maybe SuggestionValue) suggestion_value = Lens.lens (\Suggestion' {value} -> value) (\s@Suggestion' {} a -> s {value = a} :: Suggestion) instance Data.FromJSON Suggestion where parseJSON = Data.withObject "Suggestion" ( \x -> Suggestion' Prelude.<$> (x Data..:? "Id") Prelude.<*> (x Data..:? "Value") ) instance Prelude.Hashable Suggestion where hashWithSalt _salt Suggestion' {..} = _salt `Prelude.hashWithSalt` id `Prelude.hashWithSalt` value instance Prelude.NFData Suggestion where rnf Suggestion' {..} = Prelude.rnf id `Prelude.seq` Prelude.rnf value