amazonka-imagebuilder-2.0: gen/Amazonka/ImageBuilder/Types/S3Logs.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.ImageBuilder.Types.S3Logs
-- 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.ImageBuilder.Types.S3Logs 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
-- | Amazon S3 logging configuration.
--
-- /See:/ 'newS3Logs' smart constructor.
data S3Logs = S3Logs'
{ -- | The S3 bucket in which to store the logs.
s3BucketName :: Prelude.Maybe Prelude.Text,
-- | The Amazon S3 path to the bucket where the logs are stored.
s3KeyPrefix :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'S3Logs' 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:
--
-- 's3BucketName', 's3Logs_s3BucketName' - The S3 bucket in which to store the logs.
--
-- 's3KeyPrefix', 's3Logs_s3KeyPrefix' - The Amazon S3 path to the bucket where the logs are stored.
newS3Logs ::
S3Logs
newS3Logs =
S3Logs'
{ s3BucketName = Prelude.Nothing,
s3KeyPrefix = Prelude.Nothing
}
-- | The S3 bucket in which to store the logs.
s3Logs_s3BucketName :: Lens.Lens' S3Logs (Prelude.Maybe Prelude.Text)
s3Logs_s3BucketName = Lens.lens (\S3Logs' {s3BucketName} -> s3BucketName) (\s@S3Logs' {} a -> s {s3BucketName = a} :: S3Logs)
-- | The Amazon S3 path to the bucket where the logs are stored.
s3Logs_s3KeyPrefix :: Lens.Lens' S3Logs (Prelude.Maybe Prelude.Text)
s3Logs_s3KeyPrefix = Lens.lens (\S3Logs' {s3KeyPrefix} -> s3KeyPrefix) (\s@S3Logs' {} a -> s {s3KeyPrefix = a} :: S3Logs)
instance Data.FromJSON S3Logs where
parseJSON =
Data.withObject
"S3Logs"
( \x ->
S3Logs'
Prelude.<$> (x Data..:? "s3BucketName")
Prelude.<*> (x Data..:? "s3KeyPrefix")
)
instance Prelude.Hashable S3Logs where
hashWithSalt _salt S3Logs' {..} =
_salt
`Prelude.hashWithSalt` s3BucketName
`Prelude.hashWithSalt` s3KeyPrefix
instance Prelude.NFData S3Logs where
rnf S3Logs' {..} =
Prelude.rnf s3BucketName
`Prelude.seq` Prelude.rnf s3KeyPrefix
instance Data.ToJSON S3Logs where
toJSON S3Logs' {..} =
Data.object
( Prelude.catMaybes
[ ("s3BucketName" Data..=) Prelude.<$> s3BucketName,
("s3KeyPrefix" Data..=) Prelude.<$> s3KeyPrefix
]
)