{-# 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.ECS.Types.LogConfiguration where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.ECS.Types.LogDriver
import Amazonka.ECS.Types.Secret
import qualified Amazonka.Prelude as Prelude
data LogConfiguration = LogConfiguration'
{
LogConfiguration -> Maybe (HashMap Text Text)
options :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
LogConfiguration -> Maybe [Secret]
secretOptions :: Prelude.Maybe [Secret],
LogConfiguration -> LogDriver
logDriver :: LogDriver
}
deriving (LogConfiguration -> LogConfiguration -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: LogConfiguration -> LogConfiguration -> Bool
$c/= :: LogConfiguration -> LogConfiguration -> Bool
== :: LogConfiguration -> LogConfiguration -> Bool
$c== :: LogConfiguration -> LogConfiguration -> Bool
Prelude.Eq, ReadPrec [LogConfiguration]
ReadPrec LogConfiguration
Int -> ReadS LogConfiguration
ReadS [LogConfiguration]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [LogConfiguration]
$creadListPrec :: ReadPrec [LogConfiguration]
readPrec :: ReadPrec LogConfiguration
$creadPrec :: ReadPrec LogConfiguration
readList :: ReadS [LogConfiguration]
$creadList :: ReadS [LogConfiguration]
readsPrec :: Int -> ReadS LogConfiguration
$creadsPrec :: Int -> ReadS LogConfiguration
Prelude.Read, Int -> LogConfiguration -> ShowS
[LogConfiguration] -> ShowS
LogConfiguration -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [LogConfiguration] -> ShowS
$cshowList :: [LogConfiguration] -> ShowS
show :: LogConfiguration -> String
$cshow :: LogConfiguration -> String
showsPrec :: Int -> LogConfiguration -> ShowS
$cshowsPrec :: Int -> LogConfiguration -> ShowS
Prelude.Show, forall x. Rep LogConfiguration x -> LogConfiguration
forall x. LogConfiguration -> Rep LogConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep LogConfiguration x -> LogConfiguration
$cfrom :: forall x. LogConfiguration -> Rep LogConfiguration x
Prelude.Generic)
newLogConfiguration ::
LogDriver ->
LogConfiguration
newLogConfiguration :: LogDriver -> LogConfiguration
newLogConfiguration LogDriver
pLogDriver_ =
LogConfiguration'
{ $sel:options:LogConfiguration' :: Maybe (HashMap Text Text)
options = forall a. Maybe a
Prelude.Nothing,
$sel:secretOptions:LogConfiguration' :: Maybe [Secret]
secretOptions = forall a. Maybe a
Prelude.Nothing,
$sel:logDriver:LogConfiguration' :: LogDriver
logDriver = LogDriver
pLogDriver_
}
logConfiguration_options :: Lens.Lens' LogConfiguration (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
logConfiguration_options :: Lens' LogConfiguration (Maybe (HashMap Text Text))
logConfiguration_options = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LogConfiguration' {Maybe (HashMap Text Text)
options :: Maybe (HashMap Text Text)
$sel:options:LogConfiguration' :: LogConfiguration -> Maybe (HashMap Text Text)
options} -> Maybe (HashMap Text Text)
options) (\s :: LogConfiguration
s@LogConfiguration' {} Maybe (HashMap Text Text)
a -> LogConfiguration
s {$sel:options:LogConfiguration' :: Maybe (HashMap Text Text)
options = Maybe (HashMap Text Text)
a} :: LogConfiguration) 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
logConfiguration_secretOptions :: Lens.Lens' LogConfiguration (Prelude.Maybe [Secret])
logConfiguration_secretOptions :: Lens' LogConfiguration (Maybe [Secret])
logConfiguration_secretOptions = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LogConfiguration' {Maybe [Secret]
secretOptions :: Maybe [Secret]
$sel:secretOptions:LogConfiguration' :: LogConfiguration -> Maybe [Secret]
secretOptions} -> Maybe [Secret]
secretOptions) (\s :: LogConfiguration
s@LogConfiguration' {} Maybe [Secret]
a -> LogConfiguration
s {$sel:secretOptions:LogConfiguration' :: Maybe [Secret]
secretOptions = Maybe [Secret]
a} :: LogConfiguration) 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
logConfiguration_logDriver :: Lens.Lens' LogConfiguration LogDriver
logConfiguration_logDriver :: Lens' LogConfiguration LogDriver
logConfiguration_logDriver = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\LogConfiguration' {LogDriver
logDriver :: LogDriver
$sel:logDriver:LogConfiguration' :: LogConfiguration -> LogDriver
logDriver} -> LogDriver
logDriver) (\s :: LogConfiguration
s@LogConfiguration' {} LogDriver
a -> LogConfiguration
s {$sel:logDriver:LogConfiguration' :: LogDriver
logDriver = LogDriver
a} :: LogConfiguration)
instance Data.FromJSON LogConfiguration where
parseJSON :: Value -> Parser LogConfiguration
parseJSON =
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
String
"LogConfiguration"
( \Object
x ->
Maybe (HashMap Text Text)
-> Maybe [Secret] -> LogDriver -> LogConfiguration
LogConfiguration'
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"options" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"secretOptions" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"logDriver")
)
instance Prelude.Hashable LogConfiguration where
hashWithSalt :: Int -> LogConfiguration -> Int
hashWithSalt Int
_salt LogConfiguration' {Maybe [Secret]
Maybe (HashMap Text Text)
LogDriver
logDriver :: LogDriver
secretOptions :: Maybe [Secret]
options :: Maybe (HashMap Text Text)
$sel:logDriver:LogConfiguration' :: LogConfiguration -> LogDriver
$sel:secretOptions:LogConfiguration' :: LogConfiguration -> Maybe [Secret]
$sel:options:LogConfiguration' :: LogConfiguration -> Maybe (HashMap Text Text)
..} =
Int
_salt
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap Text Text)
options
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Secret]
secretOptions
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` LogDriver
logDriver
instance Prelude.NFData LogConfiguration where
rnf :: LogConfiguration -> ()
rnf LogConfiguration' {Maybe [Secret]
Maybe (HashMap Text Text)
LogDriver
logDriver :: LogDriver
secretOptions :: Maybe [Secret]
options :: Maybe (HashMap Text Text)
$sel:logDriver:LogConfiguration' :: LogConfiguration -> LogDriver
$sel:secretOptions:LogConfiguration' :: LogConfiguration -> Maybe [Secret]
$sel:options:LogConfiguration' :: LogConfiguration -> Maybe (HashMap Text Text)
..} =
forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap Text Text)
options
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Secret]
secretOptions
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf LogDriver
logDriver
instance Data.ToJSON LogConfiguration where
toJSON :: LogConfiguration -> Value
toJSON LogConfiguration' {Maybe [Secret]
Maybe (HashMap Text Text)
LogDriver
logDriver :: LogDriver
secretOptions :: Maybe [Secret]
options :: Maybe (HashMap Text Text)
$sel:logDriver:LogConfiguration' :: LogConfiguration -> LogDriver
$sel:secretOptions:LogConfiguration' :: LogConfiguration -> Maybe [Secret]
$sel:options:LogConfiguration' :: LogConfiguration -> Maybe (HashMap Text Text)
..} =
[Pair] -> Value
Data.object
( forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Key
"options" 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)
options,
(Key
"secretOptions" 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 [Secret]
secretOptions,
forall a. a -> Maybe a
Prelude.Just (Key
"logDriver" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= LogDriver
logDriver)
]
)