amazonka-appflow-2.0: gen/Amazonka/AppFlow/Types/SnowflakeDestinationProperties.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.SnowflakeDestinationProperties
-- 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.SnowflakeDestinationProperties where
import Amazonka.AppFlow.Types.ErrorHandlingConfig
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 Snowflake is being used as a
-- destination.
--
-- /See:/ 'newSnowflakeDestinationProperties' smart constructor.
data SnowflakeDestinationProperties = SnowflakeDestinationProperties'
{ -- | The object key for the destination bucket in which Amazon AppFlow places
-- the files.
bucketPrefix :: Prelude.Maybe Prelude.Text,
-- | The settings that determine how Amazon AppFlow handles an error when
-- placing data in the Snowflake destination. For example, this setting
-- would determine if the flow should fail after one insertion error, or
-- continue and attempt to insert every record regardless of the initial
-- failure. @ErrorHandlingConfig@ is a part of the destination connector
-- details.
errorHandlingConfig :: Prelude.Maybe ErrorHandlingConfig,
-- | The object specified in the Snowflake flow destination.
object' :: Prelude.Text,
-- | The intermediate bucket that Amazon AppFlow uses when moving data into
-- Snowflake.
intermediateBucketName :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SnowflakeDestinationProperties' 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', 'snowflakeDestinationProperties_bucketPrefix' - The object key for the destination bucket in which Amazon AppFlow places
-- the files.
--
-- 'errorHandlingConfig', 'snowflakeDestinationProperties_errorHandlingConfig' - The settings that determine how Amazon AppFlow handles an error when
-- placing data in the Snowflake destination. For example, this setting
-- would determine if the flow should fail after one insertion error, or
-- continue and attempt to insert every record regardless of the initial
-- failure. @ErrorHandlingConfig@ is a part of the destination connector
-- details.
--
-- 'object'', 'snowflakeDestinationProperties_object' - The object specified in the Snowflake flow destination.
--
-- 'intermediateBucketName', 'snowflakeDestinationProperties_intermediateBucketName' - The intermediate bucket that Amazon AppFlow uses when moving data into
-- Snowflake.
newSnowflakeDestinationProperties ::
-- | 'object''
Prelude.Text ->
-- | 'intermediateBucketName'
Prelude.Text ->
SnowflakeDestinationProperties
newSnowflakeDestinationProperties
pObject_
pIntermediateBucketName_ =
SnowflakeDestinationProperties'
{ bucketPrefix =
Prelude.Nothing,
errorHandlingConfig = Prelude.Nothing,
object' = pObject_,
intermediateBucketName =
pIntermediateBucketName_
}
-- | The object key for the destination bucket in which Amazon AppFlow places
-- the files.
snowflakeDestinationProperties_bucketPrefix :: Lens.Lens' SnowflakeDestinationProperties (Prelude.Maybe Prelude.Text)
snowflakeDestinationProperties_bucketPrefix = Lens.lens (\SnowflakeDestinationProperties' {bucketPrefix} -> bucketPrefix) (\s@SnowflakeDestinationProperties' {} a -> s {bucketPrefix = a} :: SnowflakeDestinationProperties)
-- | The settings that determine how Amazon AppFlow handles an error when
-- placing data in the Snowflake destination. For example, this setting
-- would determine if the flow should fail after one insertion error, or
-- continue and attempt to insert every record regardless of the initial
-- failure. @ErrorHandlingConfig@ is a part of the destination connector
-- details.
snowflakeDestinationProperties_errorHandlingConfig :: Lens.Lens' SnowflakeDestinationProperties (Prelude.Maybe ErrorHandlingConfig)
snowflakeDestinationProperties_errorHandlingConfig = Lens.lens (\SnowflakeDestinationProperties' {errorHandlingConfig} -> errorHandlingConfig) (\s@SnowflakeDestinationProperties' {} a -> s {errorHandlingConfig = a} :: SnowflakeDestinationProperties)
-- | The object specified in the Snowflake flow destination.
snowflakeDestinationProperties_object :: Lens.Lens' SnowflakeDestinationProperties Prelude.Text
snowflakeDestinationProperties_object = Lens.lens (\SnowflakeDestinationProperties' {object'} -> object') (\s@SnowflakeDestinationProperties' {} a -> s {object' = a} :: SnowflakeDestinationProperties)
-- | The intermediate bucket that Amazon AppFlow uses when moving data into
-- Snowflake.
snowflakeDestinationProperties_intermediateBucketName :: Lens.Lens' SnowflakeDestinationProperties Prelude.Text
snowflakeDestinationProperties_intermediateBucketName = Lens.lens (\SnowflakeDestinationProperties' {intermediateBucketName} -> intermediateBucketName) (\s@SnowflakeDestinationProperties' {} a -> s {intermediateBucketName = a} :: SnowflakeDestinationProperties)
instance Data.FromJSON SnowflakeDestinationProperties where
parseJSON =
Data.withObject
"SnowflakeDestinationProperties"
( \x ->
SnowflakeDestinationProperties'
Prelude.<$> (x Data..:? "bucketPrefix")
Prelude.<*> (x Data..:? "errorHandlingConfig")
Prelude.<*> (x Data..: "object")
Prelude.<*> (x Data..: "intermediateBucketName")
)
instance
Prelude.Hashable
SnowflakeDestinationProperties
where
hashWithSalt
_salt
SnowflakeDestinationProperties' {..} =
_salt
`Prelude.hashWithSalt` bucketPrefix
`Prelude.hashWithSalt` errorHandlingConfig
`Prelude.hashWithSalt` object'
`Prelude.hashWithSalt` intermediateBucketName
instance
Prelude.NFData
SnowflakeDestinationProperties
where
rnf SnowflakeDestinationProperties' {..} =
Prelude.rnf bucketPrefix
`Prelude.seq` Prelude.rnf errorHandlingConfig
`Prelude.seq` Prelude.rnf object'
`Prelude.seq` Prelude.rnf intermediateBucketName
instance Data.ToJSON SnowflakeDestinationProperties where
toJSON SnowflakeDestinationProperties' {..} =
Data.object
( Prelude.catMaybes
[ ("bucketPrefix" Data..=) Prelude.<$> bucketPrefix,
("errorHandlingConfig" Data..=)
Prelude.<$> errorHandlingConfig,
Prelude.Just ("object" Data..= object'),
Prelude.Just
( "intermediateBucketName"
Data..= intermediateBucketName
)
]
)