{-# 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.Glue.Types.S3Encryption -- 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.Glue.Types.S3Encryption where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Glue.Types.S3EncryptionMode import qualified Amazonka.Prelude as Prelude -- | Specifies how Amazon Simple Storage Service (Amazon S3) data should be -- encrypted. -- -- /See:/ 'newS3Encryption' smart constructor. data S3Encryption = S3Encryption' { -- | The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the -- data. kmsKeyArn :: Prelude.Maybe Prelude.Text, -- | The encryption mode to use for Amazon S3 data. s3EncryptionMode :: Prelude.Maybe S3EncryptionMode } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'S3Encryption' 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: -- -- 'kmsKeyArn', 's3Encryption_kmsKeyArn' - The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the -- data. -- -- 's3EncryptionMode', 's3Encryption_s3EncryptionMode' - The encryption mode to use for Amazon S3 data. newS3Encryption :: S3Encryption newS3Encryption = S3Encryption' { kmsKeyArn = Prelude.Nothing, s3EncryptionMode = Prelude.Nothing } -- | The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the -- data. s3Encryption_kmsKeyArn :: Lens.Lens' S3Encryption (Prelude.Maybe Prelude.Text) s3Encryption_kmsKeyArn = Lens.lens (\S3Encryption' {kmsKeyArn} -> kmsKeyArn) (\s@S3Encryption' {} a -> s {kmsKeyArn = a} :: S3Encryption) -- | The encryption mode to use for Amazon S3 data. s3Encryption_s3EncryptionMode :: Lens.Lens' S3Encryption (Prelude.Maybe S3EncryptionMode) s3Encryption_s3EncryptionMode = Lens.lens (\S3Encryption' {s3EncryptionMode} -> s3EncryptionMode) (\s@S3Encryption' {} a -> s {s3EncryptionMode = a} :: S3Encryption) instance Data.FromJSON S3Encryption where parseJSON = Data.withObject "S3Encryption" ( \x -> S3Encryption' Prelude.<$> (x Data..:? "KmsKeyArn") Prelude.<*> (x Data..:? "S3EncryptionMode") ) instance Prelude.Hashable S3Encryption where hashWithSalt _salt S3Encryption' {..} = _salt `Prelude.hashWithSalt` kmsKeyArn `Prelude.hashWithSalt` s3EncryptionMode instance Prelude.NFData S3Encryption where rnf S3Encryption' {..} = Prelude.rnf kmsKeyArn `Prelude.seq` Prelude.rnf s3EncryptionMode instance Data.ToJSON S3Encryption where toJSON S3Encryption' {..} = Data.object ( Prelude.catMaybes [ ("KmsKeyArn" Data..=) Prelude.<$> kmsKeyArn, ("S3EncryptionMode" Data..=) Prelude.<$> s3EncryptionMode ] )