{-# 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.Pinpoint.Types.EndpointSendConfiguration 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
data EndpointSendConfiguration = EndpointSendConfiguration'
{
EndpointSendConfiguration -> Maybe Text
bodyOverride :: Prelude.Maybe Prelude.Text,
EndpointSendConfiguration -> Maybe (HashMap Text Text)
context :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
EndpointSendConfiguration -> Maybe Text
rawContent :: Prelude.Maybe Prelude.Text,
EndpointSendConfiguration -> Maybe (HashMap Text [Text])
substitutions :: Prelude.Maybe (Prelude.HashMap Prelude.Text [Prelude.Text]),
EndpointSendConfiguration -> Maybe Text
titleOverride :: Prelude.Maybe Prelude.Text
}
deriving (EndpointSendConfiguration -> EndpointSendConfiguration -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: EndpointSendConfiguration -> EndpointSendConfiguration -> Bool
$c/= :: EndpointSendConfiguration -> EndpointSendConfiguration -> Bool
== :: EndpointSendConfiguration -> EndpointSendConfiguration -> Bool
$c== :: EndpointSendConfiguration -> EndpointSendConfiguration -> Bool
Prelude.Eq, ReadPrec [EndpointSendConfiguration]
ReadPrec EndpointSendConfiguration
Int -> ReadS EndpointSendConfiguration
ReadS [EndpointSendConfiguration]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [EndpointSendConfiguration]
$creadListPrec :: ReadPrec [EndpointSendConfiguration]
readPrec :: ReadPrec EndpointSendConfiguration
$creadPrec :: ReadPrec EndpointSendConfiguration
readList :: ReadS [EndpointSendConfiguration]
$creadList :: ReadS [EndpointSendConfiguration]
readsPrec :: Int -> ReadS EndpointSendConfiguration
$creadsPrec :: Int -> ReadS EndpointSendConfiguration
Prelude.Read, Int -> EndpointSendConfiguration -> ShowS
[EndpointSendConfiguration] -> ShowS
EndpointSendConfiguration -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [EndpointSendConfiguration] -> ShowS
$cshowList :: [EndpointSendConfiguration] -> ShowS
show :: EndpointSendConfiguration -> String
$cshow :: EndpointSendConfiguration -> String
showsPrec :: Int -> EndpointSendConfiguration -> ShowS
$cshowsPrec :: Int -> EndpointSendConfiguration -> ShowS
Prelude.Show, forall x.
Rep EndpointSendConfiguration x -> EndpointSendConfiguration
forall x.
EndpointSendConfiguration -> Rep EndpointSendConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep EndpointSendConfiguration x -> EndpointSendConfiguration
$cfrom :: forall x.
EndpointSendConfiguration -> Rep EndpointSendConfiguration x
Prelude.Generic)
newEndpointSendConfiguration ::
EndpointSendConfiguration
newEndpointSendConfiguration :: EndpointSendConfiguration
newEndpointSendConfiguration =
EndpointSendConfiguration'
{ $sel:bodyOverride:EndpointSendConfiguration' :: Maybe Text
bodyOverride =
forall a. Maybe a
Prelude.Nothing,
$sel:context:EndpointSendConfiguration' :: Maybe (HashMap Text Text)
context = forall a. Maybe a
Prelude.Nothing,
$sel:rawContent:EndpointSendConfiguration' :: Maybe Text
rawContent = forall a. Maybe a
Prelude.Nothing,
$sel:substitutions:EndpointSendConfiguration' :: Maybe (HashMap Text [Text])
substitutions = forall a. Maybe a
Prelude.Nothing,
$sel:titleOverride:EndpointSendConfiguration' :: Maybe Text
titleOverride = forall a. Maybe a
Prelude.Nothing
}
endpointSendConfiguration_bodyOverride :: Lens.Lens' EndpointSendConfiguration (Prelude.Maybe Prelude.Text)
endpointSendConfiguration_bodyOverride :: Lens' EndpointSendConfiguration (Maybe Text)
endpointSendConfiguration_bodyOverride = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\EndpointSendConfiguration' {Maybe Text
bodyOverride :: Maybe Text
$sel:bodyOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
bodyOverride} -> Maybe Text
bodyOverride) (\s :: EndpointSendConfiguration
s@EndpointSendConfiguration' {} Maybe Text
a -> EndpointSendConfiguration
s {$sel:bodyOverride:EndpointSendConfiguration' :: Maybe Text
bodyOverride = Maybe Text
a} :: EndpointSendConfiguration)
endpointSendConfiguration_context :: Lens.Lens' EndpointSendConfiguration (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
endpointSendConfiguration_context :: Lens' EndpointSendConfiguration (Maybe (HashMap Text Text))
endpointSendConfiguration_context = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\EndpointSendConfiguration' {Maybe (HashMap Text Text)
context :: Maybe (HashMap Text Text)
$sel:context:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text Text)
context} -> Maybe (HashMap Text Text)
context) (\s :: EndpointSendConfiguration
s@EndpointSendConfiguration' {} Maybe (HashMap Text Text)
a -> EndpointSendConfiguration
s {$sel:context:EndpointSendConfiguration' :: Maybe (HashMap Text Text)
context = Maybe (HashMap Text Text)
a} :: EndpointSendConfiguration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
endpointSendConfiguration_rawContent :: Lens.Lens' EndpointSendConfiguration (Prelude.Maybe Prelude.Text)
endpointSendConfiguration_rawContent :: Lens' EndpointSendConfiguration (Maybe Text)
endpointSendConfiguration_rawContent = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\EndpointSendConfiguration' {Maybe Text
rawContent :: Maybe Text
$sel:rawContent:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
rawContent} -> Maybe Text
rawContent) (\s :: EndpointSendConfiguration
s@EndpointSendConfiguration' {} Maybe Text
a -> EndpointSendConfiguration
s {$sel:rawContent:EndpointSendConfiguration' :: Maybe Text
rawContent = Maybe Text
a} :: EndpointSendConfiguration)
endpointSendConfiguration_substitutions :: Lens.Lens' EndpointSendConfiguration (Prelude.Maybe (Prelude.HashMap Prelude.Text [Prelude.Text]))
endpointSendConfiguration_substitutions :: Lens' EndpointSendConfiguration (Maybe (HashMap Text [Text]))
endpointSendConfiguration_substitutions = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\EndpointSendConfiguration' {Maybe (HashMap Text [Text])
substitutions :: Maybe (HashMap Text [Text])
$sel:substitutions:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text [Text])
substitutions} -> Maybe (HashMap Text [Text])
substitutions) (\s :: EndpointSendConfiguration
s@EndpointSendConfiguration' {} Maybe (HashMap Text [Text])
a -> EndpointSendConfiguration
s {$sel:substitutions:EndpointSendConfiguration' :: Maybe (HashMap Text [Text])
substitutions = Maybe (HashMap Text [Text])
a} :: EndpointSendConfiguration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
endpointSendConfiguration_titleOverride :: Lens.Lens' EndpointSendConfiguration (Prelude.Maybe Prelude.Text)
endpointSendConfiguration_titleOverride :: Lens' EndpointSendConfiguration (Maybe Text)
endpointSendConfiguration_titleOverride = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\EndpointSendConfiguration' {Maybe Text
titleOverride :: Maybe Text
$sel:titleOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
titleOverride} -> Maybe Text
titleOverride) (\s :: EndpointSendConfiguration
s@EndpointSendConfiguration' {} Maybe Text
a -> EndpointSendConfiguration
s {$sel:titleOverride:EndpointSendConfiguration' :: Maybe Text
titleOverride = Maybe Text
a} :: EndpointSendConfiguration)
instance Prelude.Hashable EndpointSendConfiguration where
hashWithSalt :: Int -> EndpointSendConfiguration -> Int
hashWithSalt Int
_salt EndpointSendConfiguration' {Maybe Text
Maybe (HashMap Text [Text])
Maybe (HashMap Text Text)
titleOverride :: Maybe Text
substitutions :: Maybe (HashMap Text [Text])
rawContent :: Maybe Text
context :: Maybe (HashMap Text Text)
bodyOverride :: Maybe Text
$sel:titleOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:substitutions:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text [Text])
$sel:rawContent:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:context:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text Text)
$sel:bodyOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
..} =
Int
_salt
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
bodyOverride
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text Text)
context
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
rawContent
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text [Text])
substitutions
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
titleOverride
instance Prelude.NFData EndpointSendConfiguration where
rnf :: EndpointSendConfiguration -> ()
rnf EndpointSendConfiguration' {Maybe Text
Maybe (HashMap Text [Text])
Maybe (HashMap Text Text)
titleOverride :: Maybe Text
substitutions :: Maybe (HashMap Text [Text])
rawContent :: Maybe Text
context :: Maybe (HashMap Text Text)
bodyOverride :: Maybe Text
$sel:titleOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:substitutions:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text [Text])
$sel:rawContent:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:context:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text Text)
$sel:bodyOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
..} =
forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
bodyOverride
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text Text)
context
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
rawContent
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text [Text])
substitutions
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
titleOverride
instance Data.ToJSON EndpointSendConfiguration where
toJSON :: EndpointSendConfiguration -> Value
toJSON EndpointSendConfiguration' {Maybe Text
Maybe (HashMap Text [Text])
Maybe (HashMap Text Text)
titleOverride :: Maybe Text
substitutions :: Maybe (HashMap Text [Text])
rawContent :: Maybe Text
context :: Maybe (HashMap Text Text)
bodyOverride :: Maybe Text
$sel:titleOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:substitutions:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text [Text])
$sel:rawContent:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
$sel:context:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe (HashMap Text Text)
$sel:bodyOverride:EndpointSendConfiguration' :: EndpointSendConfiguration -> Maybe Text
..} =
[Pair] -> Value
Data.object
( forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Key
"BodyOverride" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
bodyOverride,
(Key
"Context" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (HashMap Text Text)
context,
(Key
"RawContent" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
rawContent,
(Key
"Substitutions" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (HashMap Text [Text])
substitutions,
(Key
"TitleOverride" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
titleOverride
]
)