{-# 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 #-}
module Amazonka.Forecast.Types.S3Config where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data S3Config = S3Config'
{
S3Config -> Maybe Text
kmsKeyArn :: Prelude.Maybe Prelude.Text,
S3Config -> Text
path :: Prelude.Text,
S3Config -> Text
roleArn :: Prelude.Text
}
deriving (S3Config -> S3Config -> Bool
(S3Config -> S3Config -> Bool)
-> (S3Config -> S3Config -> Bool) -> Eq S3Config
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: S3Config -> S3Config -> Bool
$c/= :: S3Config -> S3Config -> Bool
== :: S3Config -> S3Config -> Bool
$c== :: S3Config -> S3Config -> Bool
Prelude.Eq, ReadPrec [S3Config]
ReadPrec S3Config
Int -> ReadS S3Config
ReadS [S3Config]
(Int -> ReadS S3Config)
-> ReadS [S3Config]
-> ReadPrec S3Config
-> ReadPrec [S3Config]
-> Read S3Config
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [S3Config]
$creadListPrec :: ReadPrec [S3Config]
readPrec :: ReadPrec S3Config
$creadPrec :: ReadPrec S3Config
readList :: ReadS [S3Config]
$creadList :: ReadS [S3Config]
readsPrec :: Int -> ReadS S3Config
$creadsPrec :: Int -> ReadS S3Config
Prelude.Read, Int -> S3Config -> ShowS
[S3Config] -> ShowS
S3Config -> String
(Int -> S3Config -> ShowS)
-> (S3Config -> String) -> ([S3Config] -> ShowS) -> Show S3Config
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [S3Config] -> ShowS
$cshowList :: [S3Config] -> ShowS
show :: S3Config -> String
$cshow :: S3Config -> String
showsPrec :: Int -> S3Config -> ShowS
$cshowsPrec :: Int -> S3Config -> ShowS
Prelude.Show, (forall x. S3Config -> Rep S3Config x)
-> (forall x. Rep S3Config x -> S3Config) -> Generic S3Config
forall x. Rep S3Config x -> S3Config
forall x. S3Config -> Rep S3Config x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep S3Config x -> S3Config
$cfrom :: forall x. S3Config -> Rep S3Config x
Prelude.Generic)
newS3Config ::
Prelude.Text ->
Prelude.Text ->
S3Config
newS3Config :: Text -> Text -> S3Config
newS3Config Text
pPath_ Text
pRoleArn_ =
S3Config' :: Maybe Text -> Text -> Text -> S3Config
S3Config'
{ $sel:kmsKeyArn:S3Config' :: Maybe Text
kmsKeyArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:path:S3Config' :: Text
path = Text
pPath_,
$sel:roleArn:S3Config' :: Text
roleArn = Text
pRoleArn_
}
s3Config_kmsKeyArn :: Lens.Lens' S3Config (Prelude.Maybe Prelude.Text)
s3Config_kmsKeyArn :: (Maybe Text -> f (Maybe Text)) -> S3Config -> f S3Config
s3Config_kmsKeyArn = (S3Config -> Maybe Text)
-> (S3Config -> Maybe Text -> S3Config)
-> Lens S3Config S3Config (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Config' {Maybe Text
kmsKeyArn :: Maybe Text
$sel:kmsKeyArn:S3Config' :: S3Config -> Maybe Text
kmsKeyArn} -> Maybe Text
kmsKeyArn) (\s :: S3Config
s@S3Config' {} Maybe Text
a -> S3Config
s {$sel:kmsKeyArn:S3Config' :: Maybe Text
kmsKeyArn = Maybe Text
a} :: S3Config)
s3Config_path :: Lens.Lens' S3Config Prelude.Text
s3Config_path :: (Text -> f Text) -> S3Config -> f S3Config
s3Config_path = (S3Config -> Text)
-> (S3Config -> Text -> S3Config)
-> Lens S3Config S3Config Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Config' {Text
path :: Text
$sel:path:S3Config' :: S3Config -> Text
path} -> Text
path) (\s :: S3Config
s@S3Config' {} Text
a -> S3Config
s {$sel:path:S3Config' :: Text
path = Text
a} :: S3Config)
s3Config_roleArn :: Lens.Lens' S3Config Prelude.Text
s3Config_roleArn :: (Text -> f Text) -> S3Config -> f S3Config
s3Config_roleArn = (S3Config -> Text)
-> (S3Config -> Text -> S3Config)
-> Lens S3Config S3Config Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\S3Config' {Text
roleArn :: Text
$sel:roleArn:S3Config' :: S3Config -> Text
roleArn} -> Text
roleArn) (\s :: S3Config
s@S3Config' {} Text
a -> S3Config
s {$sel:roleArn:S3Config' :: Text
roleArn = Text
a} :: S3Config)
instance Core.FromJSON S3Config where
parseJSON :: Value -> Parser S3Config
parseJSON =
String -> (Object -> Parser S3Config) -> Value -> Parser S3Config
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"S3Config"
( \Object
x ->
Maybe Text -> Text -> Text -> S3Config
S3Config'
(Maybe Text -> Text -> Text -> S3Config)
-> Parser (Maybe Text) -> Parser (Text -> Text -> S3Config)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"KMSKeyArn")
Parser (Text -> Text -> S3Config)
-> Parser Text -> Parser (Text -> S3Config)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"Path")
Parser (Text -> S3Config) -> Parser Text -> Parser S3Config
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"RoleArn")
)
instance Prelude.Hashable S3Config
instance Prelude.NFData S3Config
instance Core.ToJSON S3Config where
toJSON :: S3Config -> Value
toJSON S3Config' {Maybe Text
Text
roleArn :: Text
path :: Text
kmsKeyArn :: Maybe Text
$sel:roleArn:S3Config' :: S3Config -> Text
$sel:path:S3Config' :: S3Config -> Text
$sel:kmsKeyArn:S3Config' :: S3Config -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"KMSKeyArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
kmsKeyArn,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Path" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
path),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"RoleArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
roleArn)
]
)