{-# 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.Evidently.Types.S3Destination -- 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.Evidently.Types.S3Destination 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 -- | If the project stores evaluation events in an Amazon S3 bucket, this -- structure stores the bucket name and bucket prefix. -- -- /See:/ 'newS3Destination' smart constructor. data S3Destination = S3Destination' { -- | The name of the bucket in which Evidently stores evaluation events. bucket :: Prelude.Maybe Prelude.Text, -- | The bucket prefix in which Evidently stores evaluation events. prefix :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'S3Destination' 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: -- -- 'bucket', 's3Destination_bucket' - The name of the bucket in which Evidently stores evaluation events. -- -- 'prefix', 's3Destination_prefix' - The bucket prefix in which Evidently stores evaluation events. newS3Destination :: S3Destination newS3Destination = S3Destination' { bucket = Prelude.Nothing, prefix = Prelude.Nothing } -- | The name of the bucket in which Evidently stores evaluation events. s3Destination_bucket :: Lens.Lens' S3Destination (Prelude.Maybe Prelude.Text) s3Destination_bucket = Lens.lens (\S3Destination' {bucket} -> bucket) (\s@S3Destination' {} a -> s {bucket = a} :: S3Destination) -- | The bucket prefix in which Evidently stores evaluation events. s3Destination_prefix :: Lens.Lens' S3Destination (Prelude.Maybe Prelude.Text) s3Destination_prefix = Lens.lens (\S3Destination' {prefix} -> prefix) (\s@S3Destination' {} a -> s {prefix = a} :: S3Destination) instance Data.FromJSON S3Destination where parseJSON = Data.withObject "S3Destination" ( \x -> S3Destination' Prelude.<$> (x Data..:? "bucket") Prelude.<*> (x Data..:? "prefix") ) instance Prelude.Hashable S3Destination where hashWithSalt _salt S3Destination' {..} = _salt `Prelude.hashWithSalt` bucket `Prelude.hashWithSalt` prefix instance Prelude.NFData S3Destination where rnf S3Destination' {..} = Prelude.rnf bucket `Prelude.seq` Prelude.rnf prefix