{-# 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.CloudFormation.Types.StackSetDriftDetectionDetails where
import Amazonka.CloudFormation.Types.StackSetDriftDetectionStatus
import Amazonka.CloudFormation.Types.StackSetDriftStatus
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 StackSetDriftDetectionDetails = StackSetDriftDetectionDetails'
{
StackSetDriftDetectionDetails -> Maybe StackSetDriftDetectionStatus
driftDetectionStatus :: Prelude.Maybe StackSetDriftDetectionStatus,
StackSetDriftDetectionDetails -> Maybe StackSetDriftStatus
driftStatus :: Prelude.Maybe StackSetDriftStatus,
StackSetDriftDetectionDetails -> Maybe Natural
driftedStackInstancesCount :: Prelude.Maybe Prelude.Natural,
StackSetDriftDetectionDetails -> Maybe Natural
failedStackInstancesCount :: Prelude.Maybe Prelude.Natural,
StackSetDriftDetectionDetails -> Maybe Natural
inProgressStackInstancesCount :: Prelude.Maybe Prelude.Natural,
StackSetDriftDetectionDetails -> Maybe Natural
inSyncStackInstancesCount :: Prelude.Maybe Prelude.Natural,
StackSetDriftDetectionDetails -> Maybe ISO8601
lastDriftCheckTimestamp :: Prelude.Maybe Data.ISO8601,
StackSetDriftDetectionDetails -> Maybe Natural
totalStackInstancesCount :: Prelude.Maybe Prelude.Natural
}
deriving (StackSetDriftDetectionDetails
-> StackSetDriftDetectionDetails -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StackSetDriftDetectionDetails
-> StackSetDriftDetectionDetails -> Bool
$c/= :: StackSetDriftDetectionDetails
-> StackSetDriftDetectionDetails -> Bool
== :: StackSetDriftDetectionDetails
-> StackSetDriftDetectionDetails -> Bool
$c== :: StackSetDriftDetectionDetails
-> StackSetDriftDetectionDetails -> Bool
Prelude.Eq, ReadPrec [StackSetDriftDetectionDetails]
ReadPrec StackSetDriftDetectionDetails
Int -> ReadS StackSetDriftDetectionDetails
ReadS [StackSetDriftDetectionDetails]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StackSetDriftDetectionDetails]
$creadListPrec :: ReadPrec [StackSetDriftDetectionDetails]
readPrec :: ReadPrec StackSetDriftDetectionDetails
$creadPrec :: ReadPrec StackSetDriftDetectionDetails
readList :: ReadS [StackSetDriftDetectionDetails]
$creadList :: ReadS [StackSetDriftDetectionDetails]
readsPrec :: Int -> ReadS StackSetDriftDetectionDetails
$creadsPrec :: Int -> ReadS StackSetDriftDetectionDetails
Prelude.Read, Int -> StackSetDriftDetectionDetails -> ShowS
[StackSetDriftDetectionDetails] -> ShowS
StackSetDriftDetectionDetails -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StackSetDriftDetectionDetails] -> ShowS
$cshowList :: [StackSetDriftDetectionDetails] -> ShowS
show :: StackSetDriftDetectionDetails -> String
$cshow :: StackSetDriftDetectionDetails -> String
showsPrec :: Int -> StackSetDriftDetectionDetails -> ShowS
$cshowsPrec :: Int -> StackSetDriftDetectionDetails -> ShowS
Prelude.Show, forall x.
Rep StackSetDriftDetectionDetails x
-> StackSetDriftDetectionDetails
forall x.
StackSetDriftDetectionDetails
-> Rep StackSetDriftDetectionDetails x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StackSetDriftDetectionDetails x
-> StackSetDriftDetectionDetails
$cfrom :: forall x.
StackSetDriftDetectionDetails
-> Rep StackSetDriftDetectionDetails x
Prelude.Generic)
newStackSetDriftDetectionDetails ::
StackSetDriftDetectionDetails
newStackSetDriftDetectionDetails :: StackSetDriftDetectionDetails
newStackSetDriftDetectionDetails =
StackSetDriftDetectionDetails'
{ $sel:driftDetectionStatus:StackSetDriftDetectionDetails' :: Maybe StackSetDriftDetectionStatus
driftDetectionStatus =
forall a. Maybe a
Prelude.Nothing,
$sel:driftStatus:StackSetDriftDetectionDetails' :: Maybe StackSetDriftStatus
driftStatus = forall a. Maybe a
Prelude.Nothing,
$sel:driftedStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
driftedStackInstancesCount = forall a. Maybe a
Prelude.Nothing,
$sel:failedStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
failedStackInstancesCount = forall a. Maybe a
Prelude.Nothing,
$sel:inProgressStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
inProgressStackInstancesCount =
forall a. Maybe a
Prelude.Nothing,
$sel:inSyncStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
inSyncStackInstancesCount = forall a. Maybe a
Prelude.Nothing,
$sel:lastDriftCheckTimestamp:StackSetDriftDetectionDetails' :: Maybe ISO8601
lastDriftCheckTimestamp = forall a. Maybe a
Prelude.Nothing,
$sel:totalStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
totalStackInstancesCount = forall a. Maybe a
Prelude.Nothing
}
stackSetDriftDetectionDetails_driftDetectionStatus :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe StackSetDriftDetectionStatus)
stackSetDriftDetectionDetails_driftDetectionStatus :: Lens'
StackSetDriftDetectionDetails (Maybe StackSetDriftDetectionStatus)
stackSetDriftDetectionDetails_driftDetectionStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe StackSetDriftDetectionStatus
driftDetectionStatus :: Maybe StackSetDriftDetectionStatus
$sel:driftDetectionStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftDetectionStatus
driftDetectionStatus} -> Maybe StackSetDriftDetectionStatus
driftDetectionStatus) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe StackSetDriftDetectionStatus
a -> StackSetDriftDetectionDetails
s {$sel:driftDetectionStatus:StackSetDriftDetectionDetails' :: Maybe StackSetDriftDetectionStatus
driftDetectionStatus = Maybe StackSetDriftDetectionStatus
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_driftStatus :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe StackSetDriftStatus)
stackSetDriftDetectionDetails_driftStatus :: Lens' StackSetDriftDetectionDetails (Maybe StackSetDriftStatus)
stackSetDriftDetectionDetails_driftStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe StackSetDriftStatus
driftStatus :: Maybe StackSetDriftStatus
$sel:driftStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftStatus
driftStatus} -> Maybe StackSetDriftStatus
driftStatus) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe StackSetDriftStatus
a -> StackSetDriftDetectionDetails
s {$sel:driftStatus:StackSetDriftDetectionDetails' :: Maybe StackSetDriftStatus
driftStatus = Maybe StackSetDriftStatus
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_driftedStackInstancesCount :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.Natural)
stackSetDriftDetectionDetails_driftedStackInstancesCount :: Lens' StackSetDriftDetectionDetails (Maybe Natural)
stackSetDriftDetectionDetails_driftedStackInstancesCount = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe Natural
driftedStackInstancesCount :: Maybe Natural
$sel:driftedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
driftedStackInstancesCount} -> Maybe Natural
driftedStackInstancesCount) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe Natural
a -> StackSetDriftDetectionDetails
s {$sel:driftedStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
driftedStackInstancesCount = Maybe Natural
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_failedStackInstancesCount :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.Natural)
stackSetDriftDetectionDetails_failedStackInstancesCount :: Lens' StackSetDriftDetectionDetails (Maybe Natural)
stackSetDriftDetectionDetails_failedStackInstancesCount = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe Natural
failedStackInstancesCount :: Maybe Natural
$sel:failedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
failedStackInstancesCount} -> Maybe Natural
failedStackInstancesCount) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe Natural
a -> StackSetDriftDetectionDetails
s {$sel:failedStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
failedStackInstancesCount = Maybe Natural
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_inProgressStackInstancesCount :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.Natural)
stackSetDriftDetectionDetails_inProgressStackInstancesCount :: Lens' StackSetDriftDetectionDetails (Maybe Natural)
stackSetDriftDetectionDetails_inProgressStackInstancesCount = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe Natural
inProgressStackInstancesCount :: Maybe Natural
$sel:inProgressStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
inProgressStackInstancesCount} -> Maybe Natural
inProgressStackInstancesCount) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe Natural
a -> StackSetDriftDetectionDetails
s {$sel:inProgressStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
inProgressStackInstancesCount = Maybe Natural
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_inSyncStackInstancesCount :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.Natural)
stackSetDriftDetectionDetails_inSyncStackInstancesCount :: Lens' StackSetDriftDetectionDetails (Maybe Natural)
stackSetDriftDetectionDetails_inSyncStackInstancesCount = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe Natural
inSyncStackInstancesCount :: Maybe Natural
$sel:inSyncStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
inSyncStackInstancesCount} -> Maybe Natural
inSyncStackInstancesCount) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe Natural
a -> StackSetDriftDetectionDetails
s {$sel:inSyncStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
inSyncStackInstancesCount = Maybe Natural
a} :: StackSetDriftDetectionDetails)
stackSetDriftDetectionDetails_lastDriftCheckTimestamp :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.UTCTime)
stackSetDriftDetectionDetails_lastDriftCheckTimestamp :: Lens' StackSetDriftDetectionDetails (Maybe UTCTime)
stackSetDriftDetectionDetails_lastDriftCheckTimestamp = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe ISO8601
lastDriftCheckTimestamp :: Maybe ISO8601
$sel:lastDriftCheckTimestamp:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe ISO8601
lastDriftCheckTimestamp} -> Maybe ISO8601
lastDriftCheckTimestamp) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe ISO8601
a -> StackSetDriftDetectionDetails
s {$sel:lastDriftCheckTimestamp:StackSetDriftDetectionDetails' :: Maybe ISO8601
lastDriftCheckTimestamp = Maybe ISO8601
a} :: StackSetDriftDetectionDetails) 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 (a :: Format). Iso' (Time a) UTCTime
Data._Time
stackSetDriftDetectionDetails_totalStackInstancesCount :: Lens.Lens' StackSetDriftDetectionDetails (Prelude.Maybe Prelude.Natural)
stackSetDriftDetectionDetails_totalStackInstancesCount :: Lens' StackSetDriftDetectionDetails (Maybe Natural)
stackSetDriftDetectionDetails_totalStackInstancesCount = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StackSetDriftDetectionDetails' {Maybe Natural
totalStackInstancesCount :: Maybe Natural
$sel:totalStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
totalStackInstancesCount} -> Maybe Natural
totalStackInstancesCount) (\s :: StackSetDriftDetectionDetails
s@StackSetDriftDetectionDetails' {} Maybe Natural
a -> StackSetDriftDetectionDetails
s {$sel:totalStackInstancesCount:StackSetDriftDetectionDetails' :: Maybe Natural
totalStackInstancesCount = Maybe Natural
a} :: StackSetDriftDetectionDetails)
instance Data.FromXML StackSetDriftDetectionDetails where
parseXML :: [Node] -> Either String StackSetDriftDetectionDetails
parseXML [Node]
x =
Maybe StackSetDriftDetectionStatus
-> Maybe StackSetDriftStatus
-> Maybe Natural
-> Maybe Natural
-> Maybe Natural
-> Maybe Natural
-> Maybe ISO8601
-> Maybe Natural
-> StackSetDriftDetectionDetails
StackSetDriftDetectionDetails'
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"DriftDetectionStatus")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"DriftStatus")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"DriftedStackInstancesCount")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"FailedStackInstancesCount")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"InProgressStackInstancesCount")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"InSyncStackInstancesCount")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"LastDriftCheckTimestamp")
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Data..@? Text
"TotalStackInstancesCount")
instance
Prelude.Hashable
StackSetDriftDetectionDetails
where
hashWithSalt :: Int -> StackSetDriftDetectionDetails -> Int
hashWithSalt Int
_salt StackSetDriftDetectionDetails' {Maybe Natural
Maybe ISO8601
Maybe StackSetDriftDetectionStatus
Maybe StackSetDriftStatus
totalStackInstancesCount :: Maybe Natural
lastDriftCheckTimestamp :: Maybe ISO8601
inSyncStackInstancesCount :: Maybe Natural
inProgressStackInstancesCount :: Maybe Natural
failedStackInstancesCount :: Maybe Natural
driftedStackInstancesCount :: Maybe Natural
driftStatus :: Maybe StackSetDriftStatus
driftDetectionStatus :: Maybe StackSetDriftDetectionStatus
$sel:totalStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:lastDriftCheckTimestamp:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe ISO8601
$sel:inSyncStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:inProgressStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:failedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:driftedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:driftStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftStatus
$sel:driftDetectionStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftDetectionStatus
..} =
Int
_salt
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe StackSetDriftDetectionStatus
driftDetectionStatus
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe StackSetDriftStatus
driftStatus
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
driftedStackInstancesCount
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
failedStackInstancesCount
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
inProgressStackInstancesCount
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
inSyncStackInstancesCount
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ISO8601
lastDriftCheckTimestamp
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
totalStackInstancesCount
instance Prelude.NFData StackSetDriftDetectionDetails where
rnf :: StackSetDriftDetectionDetails -> ()
rnf StackSetDriftDetectionDetails' {Maybe Natural
Maybe ISO8601
Maybe StackSetDriftDetectionStatus
Maybe StackSetDriftStatus
totalStackInstancesCount :: Maybe Natural
lastDriftCheckTimestamp :: Maybe ISO8601
inSyncStackInstancesCount :: Maybe Natural
inProgressStackInstancesCount :: Maybe Natural
failedStackInstancesCount :: Maybe Natural
driftedStackInstancesCount :: Maybe Natural
driftStatus :: Maybe StackSetDriftStatus
driftDetectionStatus :: Maybe StackSetDriftDetectionStatus
$sel:totalStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:lastDriftCheckTimestamp:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe ISO8601
$sel:inSyncStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:inProgressStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:failedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:driftedStackInstancesCount:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe Natural
$sel:driftStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftStatus
$sel:driftDetectionStatus:StackSetDriftDetectionDetails' :: StackSetDriftDetectionDetails -> Maybe StackSetDriftDetectionStatus
..} =
forall a. NFData a => a -> ()
Prelude.rnf Maybe StackSetDriftDetectionStatus
driftDetectionStatus
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe StackSetDriftStatus
driftStatus
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
driftedStackInstancesCount
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
failedStackInstancesCount
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
inProgressStackInstancesCount
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
inSyncStackInstancesCount
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe ISO8601
lastDriftCheckTimestamp
seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
totalStackInstancesCount