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