{-# 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.SecurityLake.Types.LakeConfigurationResponse
-- 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.SecurityLake.Types.LakeConfigurationResponse 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
import Amazonka.SecurityLake.Types.Region
import Amazonka.SecurityLake.Types.RetentionSetting
import Amazonka.SecurityLake.Types.SettingsStatus

-- | Provides details of Amazon Security Lake lake configuration object.
--
-- /See:/ 'newLakeConfigurationResponse' smart constructor.
data LakeConfigurationResponse = LakeConfigurationResponse'
  { -- | The type of encryption key used by secure the Security Lake
    -- configuration object.
    LakeConfigurationResponse -> Maybe Text
encryptionKey :: Prelude.Maybe Prelude.Text,
    -- | Replication enables automatic, asynchronous copying of objects across
    -- Amazon S3 buckets. Amazon S3 buckets that are configured for object
    -- replication can be owned by the same Amazon Web Services account or by
    -- different accounts. You can replicate objects to a single destination
    -- bucket or to multiple destination buckets. The destination buckets can
    -- be in different Amazon Web Services Regions or within the same Region as
    -- the source bucket.
    --
    -- Set up one or more rollup Regions by providing the Region or Regions
    -- that should contribute to the central rollup Region.
    LakeConfigurationResponse -> Maybe [Region]
replicationDestinationRegions :: Prelude.Maybe [Region],
    -- | Replication settings for the Amazon S3 buckets. This parameter uses the
    -- IAM role you created that is managed by Security Lake, to ensure the
    -- replication setting is correct.
    LakeConfigurationResponse -> Maybe Text
replicationRoleArn :: Prelude.Maybe Prelude.Text,
    -- | Retention settings for the destination Amazon S3 buckets.
    LakeConfigurationResponse -> Maybe [RetentionSetting]
retentionSettings :: Prelude.Maybe [RetentionSetting],
    -- | Amazon Resource Names (ARNs) uniquely identify Amazon Web Services
    -- resources. Security Lake requires an ARN when you need to specify a
    -- resource unambiguously across all of Amazon Web Services, such as in IAM
    -- policies, Amazon Relational Database Service (Amazon RDS) tags, and API
    -- calls.
    LakeConfigurationResponse -> Maybe Text
s3BucketArn :: Prelude.Maybe Prelude.Text,
    -- | Retrieves the status of the configuration operation for an account in
    -- Amazon Security Lake.
    LakeConfigurationResponse -> Maybe SettingsStatus
status :: Prelude.Maybe SettingsStatus,
    -- | A tag is a label that you assign to an Amazon Web Services resource.
    -- Each tag consists of a key and an optional value, both of which you
    -- define.
    LakeConfigurationResponse -> Maybe (HashMap Text Text)
tagsMap :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)
  }
  deriving (LakeConfigurationResponse -> LakeConfigurationResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: LakeConfigurationResponse -> LakeConfigurationResponse -> Bool
$c/= :: LakeConfigurationResponse -> LakeConfigurationResponse -> Bool
== :: LakeConfigurationResponse -> LakeConfigurationResponse -> Bool
$c== :: LakeConfigurationResponse -> LakeConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [LakeConfigurationResponse]
ReadPrec LakeConfigurationResponse
Int -> ReadS LakeConfigurationResponse
ReadS [LakeConfigurationResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [LakeConfigurationResponse]
$creadListPrec :: ReadPrec [LakeConfigurationResponse]
readPrec :: ReadPrec LakeConfigurationResponse
$creadPrec :: ReadPrec LakeConfigurationResponse
readList :: ReadS [LakeConfigurationResponse]
$creadList :: ReadS [LakeConfigurationResponse]
readsPrec :: Int -> ReadS LakeConfigurationResponse
$creadsPrec :: Int -> ReadS LakeConfigurationResponse
Prelude.Read, Int -> LakeConfigurationResponse -> ShowS
[LakeConfigurationResponse] -> ShowS
LakeConfigurationResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [LakeConfigurationResponse] -> ShowS
$cshowList :: [LakeConfigurationResponse] -> ShowS
show :: LakeConfigurationResponse -> String
$cshow :: LakeConfigurationResponse -> String
showsPrec :: Int -> LakeConfigurationResponse -> ShowS
$cshowsPrec :: Int -> LakeConfigurationResponse -> ShowS
Prelude.Show, forall x.
Rep LakeConfigurationResponse x -> LakeConfigurationResponse
forall x.
LakeConfigurationResponse -> Rep LakeConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep LakeConfigurationResponse x -> LakeConfigurationResponse
$cfrom :: forall x.
LakeConfigurationResponse -> Rep LakeConfigurationResponse x
Prelude.Generic)

-- |
-- Create a value of 'LakeConfigurationResponse' 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:
--
-- 'encryptionKey', 'lakeConfigurationResponse_encryptionKey' - The type of encryption key used by secure the Security Lake
-- configuration object.
--
-- 'replicationDestinationRegions', 'lakeConfigurationResponse_replicationDestinationRegions' - Replication enables automatic, asynchronous copying of objects across
-- Amazon S3 buckets. Amazon S3 buckets that are configured for object
-- replication can be owned by the same Amazon Web Services account or by
-- different accounts. You can replicate objects to a single destination
-- bucket or to multiple destination buckets. The destination buckets can
-- be in different Amazon Web Services Regions or within the same Region as
-- the source bucket.
--
-- Set up one or more rollup Regions by providing the Region or Regions
-- that should contribute to the central rollup Region.
--
-- 'replicationRoleArn', 'lakeConfigurationResponse_replicationRoleArn' - Replication settings for the Amazon S3 buckets. This parameter uses the
-- IAM role you created that is managed by Security Lake, to ensure the
-- replication setting is correct.
--
-- 'retentionSettings', 'lakeConfigurationResponse_retentionSettings' - Retention settings for the destination Amazon S3 buckets.
--
-- 's3BucketArn', 'lakeConfigurationResponse_s3BucketArn' - Amazon Resource Names (ARNs) uniquely identify Amazon Web Services
-- resources. Security Lake requires an ARN when you need to specify a
-- resource unambiguously across all of Amazon Web Services, such as in IAM
-- policies, Amazon Relational Database Service (Amazon RDS) tags, and API
-- calls.
--
-- 'status', 'lakeConfigurationResponse_status' - Retrieves the status of the configuration operation for an account in
-- Amazon Security Lake.
--
-- 'tagsMap', 'lakeConfigurationResponse_tagsMap' - A tag is a label that you assign to an Amazon Web Services resource.
-- Each tag consists of a key and an optional value, both of which you
-- define.
newLakeConfigurationResponse ::
  LakeConfigurationResponse
newLakeConfigurationResponse :: LakeConfigurationResponse
newLakeConfigurationResponse =
  LakeConfigurationResponse'
    { $sel:encryptionKey:LakeConfigurationResponse' :: Maybe Text
encryptionKey =
        forall a. Maybe a
Prelude.Nothing,
      $sel:replicationDestinationRegions:LakeConfigurationResponse' :: Maybe [Region]
replicationDestinationRegions = forall a. Maybe a
Prelude.Nothing,
      $sel:replicationRoleArn:LakeConfigurationResponse' :: Maybe Text
replicationRoleArn = forall a. Maybe a
Prelude.Nothing,
      $sel:retentionSettings:LakeConfigurationResponse' :: Maybe [RetentionSetting]
retentionSettings = forall a. Maybe a
Prelude.Nothing,
      $sel:s3BucketArn:LakeConfigurationResponse' :: Maybe Text
s3BucketArn = forall a. Maybe a
Prelude.Nothing,
      $sel:status:LakeConfigurationResponse' :: Maybe SettingsStatus
status = forall a. Maybe a
Prelude.Nothing,
      $sel:tagsMap:LakeConfigurationResponse' :: Maybe (HashMap Text Text)
tagsMap = forall a. Maybe a
Prelude.Nothing
    }

-- | The type of encryption key used by secure the Security Lake
-- configuration object.
lakeConfigurationResponse_encryptionKey :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe Prelude.Text)
lakeConfigurationResponse_encryptionKey :: Lens' LakeConfigurationResponse (Maybe Text)
lakeConfigurationResponse_encryptionKey = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe Text
encryptionKey :: Maybe Text
$sel:encryptionKey:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
encryptionKey} -> Maybe Text
encryptionKey) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe Text
a -> LakeConfigurationResponse
s {$sel:encryptionKey:LakeConfigurationResponse' :: Maybe Text
encryptionKey = Maybe Text
a} :: LakeConfigurationResponse)

-- | Replication enables automatic, asynchronous copying of objects across
-- Amazon S3 buckets. Amazon S3 buckets that are configured for object
-- replication can be owned by the same Amazon Web Services account or by
-- different accounts. You can replicate objects to a single destination
-- bucket or to multiple destination buckets. The destination buckets can
-- be in different Amazon Web Services Regions or within the same Region as
-- the source bucket.
--
-- Set up one or more rollup Regions by providing the Region or Regions
-- that should contribute to the central rollup Region.
lakeConfigurationResponse_replicationDestinationRegions :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe [Region])
lakeConfigurationResponse_replicationDestinationRegions :: Lens' LakeConfigurationResponse (Maybe [Region])
lakeConfigurationResponse_replicationDestinationRegions = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe [Region]
replicationDestinationRegions :: Maybe [Region]
$sel:replicationDestinationRegions:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [Region]
replicationDestinationRegions} -> Maybe [Region]
replicationDestinationRegions) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe [Region]
a -> LakeConfigurationResponse
s {$sel:replicationDestinationRegions:LakeConfigurationResponse' :: Maybe [Region]
replicationDestinationRegions = Maybe [Region]
a} :: LakeConfigurationResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | Replication settings for the Amazon S3 buckets. This parameter uses the
-- IAM role you created that is managed by Security Lake, to ensure the
-- replication setting is correct.
lakeConfigurationResponse_replicationRoleArn :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe Prelude.Text)
lakeConfigurationResponse_replicationRoleArn :: Lens' LakeConfigurationResponse (Maybe Text)
lakeConfigurationResponse_replicationRoleArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe Text
replicationRoleArn :: Maybe Text
$sel:replicationRoleArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
replicationRoleArn} -> Maybe Text
replicationRoleArn) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe Text
a -> LakeConfigurationResponse
s {$sel:replicationRoleArn:LakeConfigurationResponse' :: Maybe Text
replicationRoleArn = Maybe Text
a} :: LakeConfigurationResponse)

-- | Retention settings for the destination Amazon S3 buckets.
lakeConfigurationResponse_retentionSettings :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe [RetentionSetting])
lakeConfigurationResponse_retentionSettings :: Lens' LakeConfigurationResponse (Maybe [RetentionSetting])
lakeConfigurationResponse_retentionSettings = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe [RetentionSetting]
retentionSettings :: Maybe [RetentionSetting]
$sel:retentionSettings:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [RetentionSetting]
retentionSettings} -> Maybe [RetentionSetting]
retentionSettings) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe [RetentionSetting]
a -> LakeConfigurationResponse
s {$sel:retentionSettings:LakeConfigurationResponse' :: Maybe [RetentionSetting]
retentionSettings = Maybe [RetentionSetting]
a} :: LakeConfigurationResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | Amazon Resource Names (ARNs) uniquely identify Amazon Web Services
-- resources. Security Lake requires an ARN when you need to specify a
-- resource unambiguously across all of Amazon Web Services, such as in IAM
-- policies, Amazon Relational Database Service (Amazon RDS) tags, and API
-- calls.
lakeConfigurationResponse_s3BucketArn :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe Prelude.Text)
lakeConfigurationResponse_s3BucketArn :: Lens' LakeConfigurationResponse (Maybe Text)
lakeConfigurationResponse_s3BucketArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe Text
s3BucketArn :: Maybe Text
$sel:s3BucketArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
s3BucketArn} -> Maybe Text
s3BucketArn) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe Text
a -> LakeConfigurationResponse
s {$sel:s3BucketArn:LakeConfigurationResponse' :: Maybe Text
s3BucketArn = Maybe Text
a} :: LakeConfigurationResponse)

-- | Retrieves the status of the configuration operation for an account in
-- Amazon Security Lake.
lakeConfigurationResponse_status :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe SettingsStatus)
lakeConfigurationResponse_status :: Lens' LakeConfigurationResponse (Maybe SettingsStatus)
lakeConfigurationResponse_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe SettingsStatus
status :: Maybe SettingsStatus
$sel:status:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe SettingsStatus
status} -> Maybe SettingsStatus
status) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe SettingsStatus
a -> LakeConfigurationResponse
s {$sel:status:LakeConfigurationResponse' :: Maybe SettingsStatus
status = Maybe SettingsStatus
a} :: LakeConfigurationResponse)

-- | A tag is a label that you assign to an Amazon Web Services resource.
-- Each tag consists of a key and an optional value, both of which you
-- define.
lakeConfigurationResponse_tagsMap :: Lens.Lens' LakeConfigurationResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
lakeConfigurationResponse_tagsMap :: Lens' LakeConfigurationResponse (Maybe (HashMap Text Text))
lakeConfigurationResponse_tagsMap = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LakeConfigurationResponse' {Maybe (HashMap Text Text)
tagsMap :: Maybe (HashMap Text Text)
$sel:tagsMap:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe (HashMap Text Text)
tagsMap} -> Maybe (HashMap Text Text)
tagsMap) (\s :: LakeConfigurationResponse
s@LakeConfigurationResponse' {} Maybe (HashMap Text Text)
a -> LakeConfigurationResponse
s {$sel:tagsMap:LakeConfigurationResponse' :: Maybe (HashMap Text Text)
tagsMap = Maybe (HashMap Text Text)
a} :: LakeConfigurationResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Data.FromJSON LakeConfigurationResponse where
  parseJSON :: Value -> Parser LakeConfigurationResponse
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"LakeConfigurationResponse"
      ( \Object
x ->
          Maybe Text
-> Maybe [Region]
-> Maybe Text
-> Maybe [RetentionSetting]
-> Maybe Text
-> Maybe SettingsStatus
-> Maybe (HashMap Text Text)
-> LakeConfigurationResponse
LakeConfigurationResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"encryptionKey")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x
                            forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"replicationDestinationRegions"
                            forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty
                        )
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"replicationRoleArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x
                            forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"retentionSettings"
                            forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty
                        )
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"s3BucketArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"status")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"tagsMap" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
      )

instance Prelude.Hashable LakeConfigurationResponse where
  hashWithSalt :: Int -> LakeConfigurationResponse -> Int
hashWithSalt Int
_salt LakeConfigurationResponse' {Maybe [Region]
Maybe [RetentionSetting]
Maybe Text
Maybe (HashMap Text Text)
Maybe SettingsStatus
tagsMap :: Maybe (HashMap Text Text)
status :: Maybe SettingsStatus
s3BucketArn :: Maybe Text
retentionSettings :: Maybe [RetentionSetting]
replicationRoleArn :: Maybe Text
replicationDestinationRegions :: Maybe [Region]
encryptionKey :: Maybe Text
$sel:tagsMap:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe (HashMap Text Text)
$sel:status:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe SettingsStatus
$sel:s3BucketArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
$sel:retentionSettings:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [RetentionSetting]
$sel:replicationRoleArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
$sel:replicationDestinationRegions:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [Region]
$sel:encryptionKey:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
encryptionKey
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Region]
replicationDestinationRegions
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
replicationRoleArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [RetentionSetting]
retentionSettings
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
s3BucketArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe SettingsStatus
status
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text Text)
tagsMap

instance Prelude.NFData LakeConfigurationResponse where
  rnf :: LakeConfigurationResponse -> ()
rnf LakeConfigurationResponse' {Maybe [Region]
Maybe [RetentionSetting]
Maybe Text
Maybe (HashMap Text Text)
Maybe SettingsStatus
tagsMap :: Maybe (HashMap Text Text)
status :: Maybe SettingsStatus
s3BucketArn :: Maybe Text
retentionSettings :: Maybe [RetentionSetting]
replicationRoleArn :: Maybe Text
replicationDestinationRegions :: Maybe [Region]
encryptionKey :: Maybe Text
$sel:tagsMap:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe (HashMap Text Text)
$sel:status:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe SettingsStatus
$sel:s3BucketArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
$sel:retentionSettings:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [RetentionSetting]
$sel:replicationRoleArn:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
$sel:replicationDestinationRegions:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe [Region]
$sel:encryptionKey:LakeConfigurationResponse' :: LakeConfigurationResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
encryptionKey
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Region]
replicationDestinationRegions
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
replicationRoleArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [RetentionSetting]
retentionSettings
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
s3BucketArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe SettingsStatus
status
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text Text)
tagsMap