{-# 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.S3LogDeliveryDescription -- 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.S3LogDeliveryDescription 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 description of the details about delivering logs to Amazon S3. -- -- /See:/ 'newS3LogDeliveryDescription' smart constructor. data S3LogDeliveryDescription = S3LogDeliveryDescription' { -- | The name of the S3 bucket that is the destination for log delivery. bucket :: Prelude.Maybe Prelude.Text, -- | Specifies whether connector logs get sent to the specified Amazon S3 -- destination. enabled :: Prelude.Maybe Prelude.Bool, -- | The S3 prefix that is the destination for log delivery. prefix :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'S3LogDeliveryDescription' 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: -- -- 'bucket', 's3LogDeliveryDescription_bucket' - The name of the S3 bucket that is the destination for log delivery. -- -- 'enabled', 's3LogDeliveryDescription_enabled' - Specifies whether connector logs get sent to the specified Amazon S3 -- destination. -- -- 'prefix', 's3LogDeliveryDescription_prefix' - The S3 prefix that is the destination for log delivery. newS3LogDeliveryDescription :: S3LogDeliveryDescription newS3LogDeliveryDescription = S3LogDeliveryDescription' { bucket = Prelude.Nothing, enabled = Prelude.Nothing, prefix = Prelude.Nothing } -- | The name of the S3 bucket that is the destination for log delivery. s3LogDeliveryDescription_bucket :: Lens.Lens' S3LogDeliveryDescription (Prelude.Maybe Prelude.Text) s3LogDeliveryDescription_bucket = Lens.lens (\S3LogDeliveryDescription' {bucket} -> bucket) (\s@S3LogDeliveryDescription' {} a -> s {bucket = a} :: S3LogDeliveryDescription) -- | Specifies whether connector logs get sent to the specified Amazon S3 -- destination. s3LogDeliveryDescription_enabled :: Lens.Lens' S3LogDeliveryDescription (Prelude.Maybe Prelude.Bool) s3LogDeliveryDescription_enabled = Lens.lens (\S3LogDeliveryDescription' {enabled} -> enabled) (\s@S3LogDeliveryDescription' {} a -> s {enabled = a} :: S3LogDeliveryDescription) -- | The S3 prefix that is the destination for log delivery. s3LogDeliveryDescription_prefix :: Lens.Lens' S3LogDeliveryDescription (Prelude.Maybe Prelude.Text) s3LogDeliveryDescription_prefix = Lens.lens (\S3LogDeliveryDescription' {prefix} -> prefix) (\s@S3LogDeliveryDescription' {} a -> s {prefix = a} :: S3LogDeliveryDescription) instance Data.FromJSON S3LogDeliveryDescription where parseJSON = Data.withObject "S3LogDeliveryDescription" ( \x -> S3LogDeliveryDescription' Prelude.<$> (x Data..:? "bucket") Prelude.<*> (x Data..:? "enabled") Prelude.<*> (x Data..:? "prefix") ) instance Prelude.Hashable S3LogDeliveryDescription where hashWithSalt _salt S3LogDeliveryDescription' {..} = _salt `Prelude.hashWithSalt` bucket `Prelude.hashWithSalt` enabled `Prelude.hashWithSalt` prefix instance Prelude.NFData S3LogDeliveryDescription where rnf S3LogDeliveryDescription' {..} = Prelude.rnf bucket `Prelude.seq` Prelude.rnf enabled `Prelude.seq` Prelude.rnf prefix