{-# 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.GuardDuty.Types.S3LogsConfiguration -- 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.GuardDuty.Types.S3LogsConfiguration 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 -- | Describes whether S3 data event logs will be enabled as a data source. -- -- /See:/ 'newS3LogsConfiguration' smart constructor. data S3LogsConfiguration = S3LogsConfiguration' { -- | The status of S3 data event logs as a data source. enable :: Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'S3LogsConfiguration' 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: -- -- 'enable', 's3LogsConfiguration_enable' - The status of S3 data event logs as a data source. newS3LogsConfiguration :: -- | 'enable' Prelude.Bool -> S3LogsConfiguration newS3LogsConfiguration pEnable_ = S3LogsConfiguration' {enable = pEnable_} -- | The status of S3 data event logs as a data source. s3LogsConfiguration_enable :: Lens.Lens' S3LogsConfiguration Prelude.Bool s3LogsConfiguration_enable = Lens.lens (\S3LogsConfiguration' {enable} -> enable) (\s@S3LogsConfiguration' {} a -> s {enable = a} :: S3LogsConfiguration) instance Prelude.Hashable S3LogsConfiguration where hashWithSalt _salt S3LogsConfiguration' {..} = _salt `Prelude.hashWithSalt` enable instance Prelude.NFData S3LogsConfiguration where rnf S3LogsConfiguration' {..} = Prelude.rnf enable instance Data.ToJSON S3LogsConfiguration where toJSON S3LogsConfiguration' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("enable" Data..= enable)] )