{-# 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.TextLogSetting -- 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.TextLogSetting 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.TextLogDestination import qualified Amazonka.Prelude as Prelude -- | Defines settings to enable text conversation logs. -- -- /See:/ 'newTextLogSetting' smart constructor. data TextLogSetting = TextLogSetting' { -- | Determines whether conversation logs should be stored for an alias. enabled :: Prelude.Bool, destination :: TextLogDestination } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TextLogSetting' 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: -- -- 'enabled', 'textLogSetting_enabled' - Determines whether conversation logs should be stored for an alias. -- -- 'destination', 'textLogSetting_destination' - Undocumented member. newTextLogSetting :: -- | 'enabled' Prelude.Bool -> -- | 'destination' TextLogDestination -> TextLogSetting newTextLogSetting pEnabled_ pDestination_ = TextLogSetting' { enabled = pEnabled_, destination = pDestination_ } -- | Determines whether conversation logs should be stored for an alias. textLogSetting_enabled :: Lens.Lens' TextLogSetting Prelude.Bool textLogSetting_enabled = Lens.lens (\TextLogSetting' {enabled} -> enabled) (\s@TextLogSetting' {} a -> s {enabled = a} :: TextLogSetting) -- | Undocumented member. textLogSetting_destination :: Lens.Lens' TextLogSetting TextLogDestination textLogSetting_destination = Lens.lens (\TextLogSetting' {destination} -> destination) (\s@TextLogSetting' {} a -> s {destination = a} :: TextLogSetting) instance Data.FromJSON TextLogSetting where parseJSON = Data.withObject "TextLogSetting" ( \x -> TextLogSetting' Prelude.<$> (x Data..: "enabled") Prelude.<*> (x Data..: "destination") ) instance Prelude.Hashable TextLogSetting where hashWithSalt _salt TextLogSetting' {..} = _salt `Prelude.hashWithSalt` enabled `Prelude.hashWithSalt` destination instance Prelude.NFData TextLogSetting where rnf TextLogSetting' {..} = Prelude.rnf enabled `Prelude.seq` Prelude.rnf destination instance Data.ToJSON TextLogSetting where toJSON TextLogSetting' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("enabled" Data..= enabled), Prelude.Just ("destination" Data..= destination) ] )