{-# 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.EMR.Types.StepConfig where
import qualified Amazonka.Core as Core
import Amazonka.EMR.Types.ActionOnFailure
import Amazonka.EMR.Types.HadoopJarStepConfig
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data StepConfig = StepConfig'
{
StepConfig -> Maybe ActionOnFailure
actionOnFailure :: Prelude.Maybe ActionOnFailure,
StepConfig -> Text
name :: Prelude.Text,
StepConfig -> HadoopJarStepConfig
hadoopJarStep :: HadoopJarStepConfig
}
deriving (StepConfig -> StepConfig -> Bool
(StepConfig -> StepConfig -> Bool)
-> (StepConfig -> StepConfig -> Bool) -> Eq StepConfig
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StepConfig -> StepConfig -> Bool
$c/= :: StepConfig -> StepConfig -> Bool
== :: StepConfig -> StepConfig -> Bool
$c== :: StepConfig -> StepConfig -> Bool
Prelude.Eq, ReadPrec [StepConfig]
ReadPrec StepConfig
Int -> ReadS StepConfig
ReadS [StepConfig]
(Int -> ReadS StepConfig)
-> ReadS [StepConfig]
-> ReadPrec StepConfig
-> ReadPrec [StepConfig]
-> Read StepConfig
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StepConfig]
$creadListPrec :: ReadPrec [StepConfig]
readPrec :: ReadPrec StepConfig
$creadPrec :: ReadPrec StepConfig
readList :: ReadS [StepConfig]
$creadList :: ReadS [StepConfig]
readsPrec :: Int -> ReadS StepConfig
$creadsPrec :: Int -> ReadS StepConfig
Prelude.Read, Int -> StepConfig -> ShowS
[StepConfig] -> ShowS
StepConfig -> String
(Int -> StepConfig -> ShowS)
-> (StepConfig -> String)
-> ([StepConfig] -> ShowS)
-> Show StepConfig
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StepConfig] -> ShowS
$cshowList :: [StepConfig] -> ShowS
show :: StepConfig -> String
$cshow :: StepConfig -> String
showsPrec :: Int -> StepConfig -> ShowS
$cshowsPrec :: Int -> StepConfig -> ShowS
Prelude.Show, (forall x. StepConfig -> Rep StepConfig x)
-> (forall x. Rep StepConfig x -> StepConfig) -> Generic StepConfig
forall x. Rep StepConfig x -> StepConfig
forall x. StepConfig -> Rep StepConfig x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep StepConfig x -> StepConfig
$cfrom :: forall x. StepConfig -> Rep StepConfig x
Prelude.Generic)
newStepConfig ::
Prelude.Text ->
HadoopJarStepConfig ->
StepConfig
newStepConfig :: Text -> HadoopJarStepConfig -> StepConfig
newStepConfig Text
pName_ HadoopJarStepConfig
pHadoopJarStep_ =
StepConfig' :: Maybe ActionOnFailure -> Text -> HadoopJarStepConfig -> StepConfig
StepConfig'
{ $sel:actionOnFailure:StepConfig' :: Maybe ActionOnFailure
actionOnFailure = Maybe ActionOnFailure
forall a. Maybe a
Prelude.Nothing,
$sel:name:StepConfig' :: Text
name = Text
pName_,
$sel:hadoopJarStep:StepConfig' :: HadoopJarStepConfig
hadoopJarStep = HadoopJarStepConfig
pHadoopJarStep_
}
stepConfig_actionOnFailure :: Lens.Lens' StepConfig (Prelude.Maybe ActionOnFailure)
stepConfig_actionOnFailure :: (Maybe ActionOnFailure -> f (Maybe ActionOnFailure))
-> StepConfig -> f StepConfig
stepConfig_actionOnFailure = (StepConfig -> Maybe ActionOnFailure)
-> (StepConfig -> Maybe ActionOnFailure -> StepConfig)
-> Lens
StepConfig
StepConfig
(Maybe ActionOnFailure)
(Maybe ActionOnFailure)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StepConfig' {Maybe ActionOnFailure
actionOnFailure :: Maybe ActionOnFailure
$sel:actionOnFailure:StepConfig' :: StepConfig -> Maybe ActionOnFailure
actionOnFailure} -> Maybe ActionOnFailure
actionOnFailure) (\s :: StepConfig
s@StepConfig' {} Maybe ActionOnFailure
a -> StepConfig
s {$sel:actionOnFailure:StepConfig' :: Maybe ActionOnFailure
actionOnFailure = Maybe ActionOnFailure
a} :: StepConfig)
stepConfig_name :: Lens.Lens' StepConfig Prelude.Text
stepConfig_name :: (Text -> f Text) -> StepConfig -> f StepConfig
stepConfig_name = (StepConfig -> Text)
-> (StepConfig -> Text -> StepConfig)
-> Lens StepConfig StepConfig Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StepConfig' {Text
name :: Text
$sel:name:StepConfig' :: StepConfig -> Text
name} -> Text
name) (\s :: StepConfig
s@StepConfig' {} Text
a -> StepConfig
s {$sel:name:StepConfig' :: Text
name = Text
a} :: StepConfig)
stepConfig_hadoopJarStep :: Lens.Lens' StepConfig HadoopJarStepConfig
stepConfig_hadoopJarStep :: (HadoopJarStepConfig -> f HadoopJarStepConfig)
-> StepConfig -> f StepConfig
stepConfig_hadoopJarStep = (StepConfig -> HadoopJarStepConfig)
-> (StepConfig -> HadoopJarStepConfig -> StepConfig)
-> Lens
StepConfig StepConfig HadoopJarStepConfig HadoopJarStepConfig
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StepConfig' {HadoopJarStepConfig
hadoopJarStep :: HadoopJarStepConfig
$sel:hadoopJarStep:StepConfig' :: StepConfig -> HadoopJarStepConfig
hadoopJarStep} -> HadoopJarStepConfig
hadoopJarStep) (\s :: StepConfig
s@StepConfig' {} HadoopJarStepConfig
a -> StepConfig
s {$sel:hadoopJarStep:StepConfig' :: HadoopJarStepConfig
hadoopJarStep = HadoopJarStepConfig
a} :: StepConfig)
instance Prelude.Hashable StepConfig
instance Prelude.NFData StepConfig
instance Core.ToJSON StepConfig where
toJSON :: StepConfig -> Value
toJSON StepConfig' {Maybe ActionOnFailure
Text
HadoopJarStepConfig
hadoopJarStep :: HadoopJarStepConfig
name :: Text
actionOnFailure :: Maybe ActionOnFailure
$sel:hadoopJarStep:StepConfig' :: StepConfig -> HadoopJarStepConfig
$sel:name:StepConfig' :: StepConfig -> Text
$sel:actionOnFailure:StepConfig' :: StepConfig -> Maybe ActionOnFailure
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"ActionOnFailure" Text -> ActionOnFailure -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(ActionOnFailure -> Pair) -> Maybe ActionOnFailure -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ActionOnFailure
actionOnFailure,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
name),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"HadoopJarStep" Text -> HadoopJarStepConfig -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= HadoopJarStepConfig
hadoopJarStep)
]
)