{-# 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.MacieV2.Types.BucketPolicy -- 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.MacieV2.Types.BucketPolicy 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 -- | Provides information about the permissions settings of the bucket policy -- for an S3 bucket. -- -- /See:/ 'newBucketPolicy' smart constructor. data BucketPolicy = BucketPolicy' { -- | Specifies whether the bucket policy allows the general public to have -- read access to the bucket. allowsPublicReadAccess :: Prelude.Maybe Prelude.Bool, -- | Specifies whether the bucket policy allows the general public to have -- write access to the bucket. allowsPublicWriteAccess :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'BucketPolicy' 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: -- -- 'allowsPublicReadAccess', 'bucketPolicy_allowsPublicReadAccess' - Specifies whether the bucket policy allows the general public to have -- read access to the bucket. -- -- 'allowsPublicWriteAccess', 'bucketPolicy_allowsPublicWriteAccess' - Specifies whether the bucket policy allows the general public to have -- write access to the bucket. newBucketPolicy :: BucketPolicy newBucketPolicy = BucketPolicy' { allowsPublicReadAccess = Prelude.Nothing, allowsPublicWriteAccess = Prelude.Nothing } -- | Specifies whether the bucket policy allows the general public to have -- read access to the bucket. bucketPolicy_allowsPublicReadAccess :: Lens.Lens' BucketPolicy (Prelude.Maybe Prelude.Bool) bucketPolicy_allowsPublicReadAccess = Lens.lens (\BucketPolicy' {allowsPublicReadAccess} -> allowsPublicReadAccess) (\s@BucketPolicy' {} a -> s {allowsPublicReadAccess = a} :: BucketPolicy) -- | Specifies whether the bucket policy allows the general public to have -- write access to the bucket. bucketPolicy_allowsPublicWriteAccess :: Lens.Lens' BucketPolicy (Prelude.Maybe Prelude.Bool) bucketPolicy_allowsPublicWriteAccess = Lens.lens (\BucketPolicy' {allowsPublicWriteAccess} -> allowsPublicWriteAccess) (\s@BucketPolicy' {} a -> s {allowsPublicWriteAccess = a} :: BucketPolicy) instance Data.FromJSON BucketPolicy where parseJSON = Data.withObject "BucketPolicy" ( \x -> BucketPolicy' Prelude.<$> (x Data..:? "allowsPublicReadAccess") Prelude.<*> (x Data..:? "allowsPublicWriteAccess") ) instance Prelude.Hashable BucketPolicy where hashWithSalt _salt BucketPolicy' {..} = _salt `Prelude.hashWithSalt` allowsPublicReadAccess `Prelude.hashWithSalt` allowsPublicWriteAccess instance Prelude.NFData BucketPolicy where rnf BucketPolicy' {..} = Prelude.rnf allowsPublicReadAccess `Prelude.seq` Prelude.rnf allowsPublicWriteAccess