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