{-# 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.Translate.Types.Term -- 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.Translate.Types.Term 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 -- | The term being translated by the custom terminology. -- -- /See:/ 'newTerm' smart constructor. data Term = Term' { -- | The source text of the term being translated by the custom terminology. sourceText :: Prelude.Maybe Prelude.Text, -- | The target text of the term being translated by the custom terminology. targetText :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Term' 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: -- -- 'sourceText', 'term_sourceText' - The source text of the term being translated by the custom terminology. -- -- 'targetText', 'term_targetText' - The target text of the term being translated by the custom terminology. newTerm :: Term newTerm = Term' { sourceText = Prelude.Nothing, targetText = Prelude.Nothing } -- | The source text of the term being translated by the custom terminology. term_sourceText :: Lens.Lens' Term (Prelude.Maybe Prelude.Text) term_sourceText = Lens.lens (\Term' {sourceText} -> sourceText) (\s@Term' {} a -> s {sourceText = a} :: Term) -- | The target text of the term being translated by the custom terminology. term_targetText :: Lens.Lens' Term (Prelude.Maybe Prelude.Text) term_targetText = Lens.lens (\Term' {targetText} -> targetText) (\s@Term' {} a -> s {targetText = a} :: Term) instance Data.FromJSON Term where parseJSON = Data.withObject "Term" ( \x -> Term' Prelude.<$> (x Data..:? "SourceText") Prelude.<*> (x Data..:? "TargetText") ) instance Prelude.Hashable Term where hashWithSalt _salt Term' {..} = _salt `Prelude.hashWithSalt` sourceText `Prelude.hashWithSalt` targetText instance Prelude.NFData Term where rnf Term' {..} = Prelude.rnf sourceText `Prelude.seq` Prelude.rnf targetText