amazonka-appflow-2.0: gen/Amazonka/AppFlow/Types/UpsolverDestinationProperties.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.AppFlow.Types.UpsolverDestinationProperties
-- 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.AppFlow.Types.UpsolverDestinationProperties where
import Amazonka.AppFlow.Types.UpsolverS3OutputFormatConfig
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
-- | The properties that are applied when Upsolver is used as a destination.
--
-- /See:/ 'newUpsolverDestinationProperties' smart constructor.
data UpsolverDestinationProperties = UpsolverDestinationProperties'
{ -- | The object key for the destination Upsolver Amazon S3 bucket in which
-- Amazon AppFlow places the files.
bucketPrefix :: Prelude.Maybe Prelude.Text,
-- | The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the
-- transferred data.
bucketName :: Prelude.Text,
-- | The configuration that determines how data is formatted when Upsolver is
-- used as the flow destination.
s3OutputFormatConfig :: UpsolverS3OutputFormatConfig
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'UpsolverDestinationProperties' 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:
--
-- 'bucketPrefix', 'upsolverDestinationProperties_bucketPrefix' - The object key for the destination Upsolver Amazon S3 bucket in which
-- Amazon AppFlow places the files.
--
-- 'bucketName', 'upsolverDestinationProperties_bucketName' - The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the
-- transferred data.
--
-- 's3OutputFormatConfig', 'upsolverDestinationProperties_s3OutputFormatConfig' - The configuration that determines how data is formatted when Upsolver is
-- used as the flow destination.
newUpsolverDestinationProperties ::
-- | 'bucketName'
Prelude.Text ->
-- | 's3OutputFormatConfig'
UpsolverS3OutputFormatConfig ->
UpsolverDestinationProperties
newUpsolverDestinationProperties
pBucketName_
pS3OutputFormatConfig_ =
UpsolverDestinationProperties'
{ bucketPrefix =
Prelude.Nothing,
bucketName = pBucketName_,
s3OutputFormatConfig =
pS3OutputFormatConfig_
}
-- | The object key for the destination Upsolver Amazon S3 bucket in which
-- Amazon AppFlow places the files.
upsolverDestinationProperties_bucketPrefix :: Lens.Lens' UpsolverDestinationProperties (Prelude.Maybe Prelude.Text)
upsolverDestinationProperties_bucketPrefix = Lens.lens (\UpsolverDestinationProperties' {bucketPrefix} -> bucketPrefix) (\s@UpsolverDestinationProperties' {} a -> s {bucketPrefix = a} :: UpsolverDestinationProperties)
-- | The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the
-- transferred data.
upsolverDestinationProperties_bucketName :: Lens.Lens' UpsolverDestinationProperties Prelude.Text
upsolverDestinationProperties_bucketName = Lens.lens (\UpsolverDestinationProperties' {bucketName} -> bucketName) (\s@UpsolverDestinationProperties' {} a -> s {bucketName = a} :: UpsolverDestinationProperties)
-- | The configuration that determines how data is formatted when Upsolver is
-- used as the flow destination.
upsolverDestinationProperties_s3OutputFormatConfig :: Lens.Lens' UpsolverDestinationProperties UpsolverS3OutputFormatConfig
upsolverDestinationProperties_s3OutputFormatConfig = Lens.lens (\UpsolverDestinationProperties' {s3OutputFormatConfig} -> s3OutputFormatConfig) (\s@UpsolverDestinationProperties' {} a -> s {s3OutputFormatConfig = a} :: UpsolverDestinationProperties)
instance Data.FromJSON UpsolverDestinationProperties where
parseJSON =
Data.withObject
"UpsolverDestinationProperties"
( \x ->
UpsolverDestinationProperties'
Prelude.<$> (x Data..:? "bucketPrefix")
Prelude.<*> (x Data..: "bucketName")
Prelude.<*> (x Data..: "s3OutputFormatConfig")
)
instance
Prelude.Hashable
UpsolverDestinationProperties
where
hashWithSalt _salt UpsolverDestinationProperties' {..} =
_salt
`Prelude.hashWithSalt` bucketPrefix
`Prelude.hashWithSalt` bucketName
`Prelude.hashWithSalt` s3OutputFormatConfig
instance Prelude.NFData UpsolverDestinationProperties where
rnf UpsolverDestinationProperties' {..} =
Prelude.rnf bucketPrefix
`Prelude.seq` Prelude.rnf bucketName
`Prelude.seq` Prelude.rnf s3OutputFormatConfig
instance Data.ToJSON UpsolverDestinationProperties where
toJSON UpsolverDestinationProperties' {..} =
Data.object
( Prelude.catMaybes
[ ("bucketPrefix" Data..=) Prelude.<$> bucketPrefix,
Prelude.Just ("bucketName" Data..= bucketName),
Prelude.Just
( "s3OutputFormatConfig"
Data..= s3OutputFormatConfig
)
]
)