amazonka-lexv2-models-2.0: gen/Amazonka/LexV2Models/Types/SlotDefaultValueSpecification.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.LexV2Models.Types.SlotDefaultValueSpecification
-- 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.LexV2Models.Types.SlotDefaultValueSpecification where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.LexV2Models.Types.SlotDefaultValue
import qualified Amazonka.Prelude as Prelude
-- | Defines a list of values that Amazon Lex should use as the default value
-- for a slot.
--
-- /See:/ 'newSlotDefaultValueSpecification' smart constructor.
data SlotDefaultValueSpecification = SlotDefaultValueSpecification'
{ -- | A list of default values. Amazon Lex chooses the default value to use in
-- the order that they are presented in the list.
defaultValueList :: [SlotDefaultValue]
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SlotDefaultValueSpecification' 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:
--
-- 'defaultValueList', 'slotDefaultValueSpecification_defaultValueList' - A list of default values. Amazon Lex chooses the default value to use in
-- the order that they are presented in the list.
newSlotDefaultValueSpecification ::
SlotDefaultValueSpecification
newSlotDefaultValueSpecification =
SlotDefaultValueSpecification'
{ defaultValueList =
Prelude.mempty
}
-- | A list of default values. Amazon Lex chooses the default value to use in
-- the order that they are presented in the list.
slotDefaultValueSpecification_defaultValueList :: Lens.Lens' SlotDefaultValueSpecification [SlotDefaultValue]
slotDefaultValueSpecification_defaultValueList = Lens.lens (\SlotDefaultValueSpecification' {defaultValueList} -> defaultValueList) (\s@SlotDefaultValueSpecification' {} a -> s {defaultValueList = a} :: SlotDefaultValueSpecification) Prelude.. Lens.coerced
instance Data.FromJSON SlotDefaultValueSpecification where
parseJSON =
Data.withObject
"SlotDefaultValueSpecification"
( \x ->
SlotDefaultValueSpecification'
Prelude.<$> ( x
Data..:? "defaultValueList"
Data..!= Prelude.mempty
)
)
instance
Prelude.Hashable
SlotDefaultValueSpecification
where
hashWithSalt _salt SlotDefaultValueSpecification' {..} =
_salt `Prelude.hashWithSalt` defaultValueList
instance Prelude.NFData SlotDefaultValueSpecification where
rnf SlotDefaultValueSpecification' {..} =
Prelude.rnf defaultValueList
instance Data.ToJSON SlotDefaultValueSpecification where
toJSON SlotDefaultValueSpecification' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just
("defaultValueList" Data..= defaultValueList)
]
)