{-# 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.LexModels.Types.EnumerationValue -- 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.LexModels.Types.EnumerationValue 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 -- | Each slot type can have a set of values. Each enumeration value -- represents a value the slot type can take. -- -- For example, a pizza ordering bot could have a slot type that specifies -- the type of crust that the pizza should have. The slot type could -- include the values -- -- - thick -- -- - thin -- -- - stuffed -- -- /See:/ 'newEnumerationValue' smart constructor. data EnumerationValue = EnumerationValue' { -- | Additional values related to the slot type value. synonyms :: Prelude.Maybe [Prelude.Text], -- | The value of the slot type. value :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'EnumerationValue' 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: -- -- 'synonyms', 'enumerationValue_synonyms' - Additional values related to the slot type value. -- -- 'value', 'enumerationValue_value' - The value of the slot type. newEnumerationValue :: -- | 'value' Prelude.Text -> EnumerationValue newEnumerationValue pValue_ = EnumerationValue' { synonyms = Prelude.Nothing, value = pValue_ } -- | Additional values related to the slot type value. enumerationValue_synonyms :: Lens.Lens' EnumerationValue (Prelude.Maybe [Prelude.Text]) enumerationValue_synonyms = Lens.lens (\EnumerationValue' {synonyms} -> synonyms) (\s@EnumerationValue' {} a -> s {synonyms = a} :: EnumerationValue) Prelude.. Lens.mapping Lens.coerced -- | The value of the slot type. enumerationValue_value :: Lens.Lens' EnumerationValue Prelude.Text enumerationValue_value = Lens.lens (\EnumerationValue' {value} -> value) (\s@EnumerationValue' {} a -> s {value = a} :: EnumerationValue) instance Data.FromJSON EnumerationValue where parseJSON = Data.withObject "EnumerationValue" ( \x -> EnumerationValue' Prelude.<$> (x Data..:? "synonyms" Data..!= Prelude.mempty) Prelude.<*> (x Data..: "value") ) instance Prelude.Hashable EnumerationValue where hashWithSalt _salt EnumerationValue' {..} = _salt `Prelude.hashWithSalt` synonyms `Prelude.hashWithSalt` value instance Prelude.NFData EnumerationValue where rnf EnumerationValue' {..} = Prelude.rnf synonyms `Prelude.seq` Prelude.rnf value instance Data.ToJSON EnumerationValue where toJSON EnumerationValue' {..} = Data.object ( Prelude.catMaybes [ ("synonyms" Data..=) Prelude.<$> synonyms, Prelude.Just ("value" Data..= value) ] )