{-# 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.Synthetics.Types.CanaryScheduleInput where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data CanaryScheduleInput = CanaryScheduleInput'
{
CanaryScheduleInput -> Maybe Natural
durationInSeconds :: Prelude.Maybe Prelude.Natural,
CanaryScheduleInput -> Text
expression :: Prelude.Text
}
deriving (CanaryScheduleInput -> CanaryScheduleInput -> Bool
(CanaryScheduleInput -> CanaryScheduleInput -> Bool)
-> (CanaryScheduleInput -> CanaryScheduleInput -> Bool)
-> Eq CanaryScheduleInput
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CanaryScheduleInput -> CanaryScheduleInput -> Bool
$c/= :: CanaryScheduleInput -> CanaryScheduleInput -> Bool
== :: CanaryScheduleInput -> CanaryScheduleInput -> Bool
$c== :: CanaryScheduleInput -> CanaryScheduleInput -> Bool
Prelude.Eq, ReadPrec [CanaryScheduleInput]
ReadPrec CanaryScheduleInput
Int -> ReadS CanaryScheduleInput
ReadS [CanaryScheduleInput]
(Int -> ReadS CanaryScheduleInput)
-> ReadS [CanaryScheduleInput]
-> ReadPrec CanaryScheduleInput
-> ReadPrec [CanaryScheduleInput]
-> Read CanaryScheduleInput
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CanaryScheduleInput]
$creadListPrec :: ReadPrec [CanaryScheduleInput]
readPrec :: ReadPrec CanaryScheduleInput
$creadPrec :: ReadPrec CanaryScheduleInput
readList :: ReadS [CanaryScheduleInput]
$creadList :: ReadS [CanaryScheduleInput]
readsPrec :: Int -> ReadS CanaryScheduleInput
$creadsPrec :: Int -> ReadS CanaryScheduleInput
Prelude.Read, Int -> CanaryScheduleInput -> ShowS
[CanaryScheduleInput] -> ShowS
CanaryScheduleInput -> String
(Int -> CanaryScheduleInput -> ShowS)
-> (CanaryScheduleInput -> String)
-> ([CanaryScheduleInput] -> ShowS)
-> Show CanaryScheduleInput
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CanaryScheduleInput] -> ShowS
$cshowList :: [CanaryScheduleInput] -> ShowS
show :: CanaryScheduleInput -> String
$cshow :: CanaryScheduleInput -> String
showsPrec :: Int -> CanaryScheduleInput -> ShowS
$cshowsPrec :: Int -> CanaryScheduleInput -> ShowS
Prelude.Show, (forall x. CanaryScheduleInput -> Rep CanaryScheduleInput x)
-> (forall x. Rep CanaryScheduleInput x -> CanaryScheduleInput)
-> Generic CanaryScheduleInput
forall x. Rep CanaryScheduleInput x -> CanaryScheduleInput
forall x. CanaryScheduleInput -> Rep CanaryScheduleInput x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CanaryScheduleInput x -> CanaryScheduleInput
$cfrom :: forall x. CanaryScheduleInput -> Rep CanaryScheduleInput x
Prelude.Generic)
newCanaryScheduleInput ::
Prelude.Text ->
CanaryScheduleInput
newCanaryScheduleInput :: Text -> CanaryScheduleInput
newCanaryScheduleInput Text
pExpression_ =
CanaryScheduleInput' :: Maybe Natural -> Text -> CanaryScheduleInput
CanaryScheduleInput'
{ $sel:durationInSeconds:CanaryScheduleInput' :: Maybe Natural
durationInSeconds =
Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:expression:CanaryScheduleInput' :: Text
expression = Text
pExpression_
}
canaryScheduleInput_durationInSeconds :: Lens.Lens' CanaryScheduleInput (Prelude.Maybe Prelude.Natural)
canaryScheduleInput_durationInSeconds :: (Maybe Natural -> f (Maybe Natural))
-> CanaryScheduleInput -> f CanaryScheduleInput
canaryScheduleInput_durationInSeconds = (CanaryScheduleInput -> Maybe Natural)
-> (CanaryScheduleInput -> Maybe Natural -> CanaryScheduleInput)
-> Lens
CanaryScheduleInput
CanaryScheduleInput
(Maybe Natural)
(Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CanaryScheduleInput' {Maybe Natural
durationInSeconds :: Maybe Natural
$sel:durationInSeconds:CanaryScheduleInput' :: CanaryScheduleInput -> Maybe Natural
durationInSeconds} -> Maybe Natural
durationInSeconds) (\s :: CanaryScheduleInput
s@CanaryScheduleInput' {} Maybe Natural
a -> CanaryScheduleInput
s {$sel:durationInSeconds:CanaryScheduleInput' :: Maybe Natural
durationInSeconds = Maybe Natural
a} :: CanaryScheduleInput)
canaryScheduleInput_expression :: Lens.Lens' CanaryScheduleInput Prelude.Text
canaryScheduleInput_expression :: (Text -> f Text) -> CanaryScheduleInput -> f CanaryScheduleInput
canaryScheduleInput_expression = (CanaryScheduleInput -> Text)
-> (CanaryScheduleInput -> Text -> CanaryScheduleInput)
-> Lens CanaryScheduleInput CanaryScheduleInput Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CanaryScheduleInput' {Text
expression :: Text
$sel:expression:CanaryScheduleInput' :: CanaryScheduleInput -> Text
expression} -> Text
expression) (\s :: CanaryScheduleInput
s@CanaryScheduleInput' {} Text
a -> CanaryScheduleInput
s {$sel:expression:CanaryScheduleInput' :: Text
expression = Text
a} :: CanaryScheduleInput)
instance Prelude.Hashable CanaryScheduleInput
instance Prelude.NFData CanaryScheduleInput
instance Core.ToJSON CanaryScheduleInput where
toJSON :: CanaryScheduleInput -> Value
toJSON CanaryScheduleInput' {Maybe Natural
Text
expression :: Text
durationInSeconds :: Maybe Natural
$sel:expression:CanaryScheduleInput' :: CanaryScheduleInput -> Text
$sel:durationInSeconds:CanaryScheduleInput' :: CanaryScheduleInput -> Maybe Natural
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"DurationInSeconds" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
durationInSeconds,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Expression" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
expression)
]
)