{-# 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.KafkaConnect.Types.LogDeliveryDescription -- 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.KafkaConnect.Types.LogDeliveryDescription where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.KafkaConnect.Types.WorkerLogDeliveryDescription import qualified Amazonka.Prelude as Prelude -- | The description of the log delivery settings. -- -- /See:/ 'newLogDeliveryDescription' smart constructor. data LogDeliveryDescription = LogDeliveryDescription' { -- | The workers can send worker logs to different destination types. This -- configuration specifies the details of these destinations. workerLogDelivery :: Prelude.Maybe WorkerLogDeliveryDescription } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'LogDeliveryDescription' 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: -- -- 'workerLogDelivery', 'logDeliveryDescription_workerLogDelivery' - The workers can send worker logs to different destination types. This -- configuration specifies the details of these destinations. newLogDeliveryDescription :: LogDeliveryDescription newLogDeliveryDescription = LogDeliveryDescription' { workerLogDelivery = Prelude.Nothing } -- | The workers can send worker logs to different destination types. This -- configuration specifies the details of these destinations. logDeliveryDescription_workerLogDelivery :: Lens.Lens' LogDeliveryDescription (Prelude.Maybe WorkerLogDeliveryDescription) logDeliveryDescription_workerLogDelivery = Lens.lens (\LogDeliveryDescription' {workerLogDelivery} -> workerLogDelivery) (\s@LogDeliveryDescription' {} a -> s {workerLogDelivery = a} :: LogDeliveryDescription) instance Data.FromJSON LogDeliveryDescription where parseJSON = Data.withObject "LogDeliveryDescription" ( \x -> LogDeliveryDescription' Prelude.<$> (x Data..:? "workerLogDelivery") ) instance Prelude.Hashable LogDeliveryDescription where hashWithSalt _salt LogDeliveryDescription' {..} = _salt `Prelude.hashWithSalt` workerLogDelivery instance Prelude.NFData LogDeliveryDescription where rnf LogDeliveryDescription' {..} = Prelude.rnf workerLogDelivery