{-# 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 #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.WellArchitected.Types.CheckSummary
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.WellArchitected.Types.CheckSummary where

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
import Amazonka.WellArchitected.Types.CheckProvider
import Amazonka.WellArchitected.Types.CheckStatus

-- | Trusted Advisor check summary.
--
-- /See:/ 'newCheckSummary' smart constructor.
data CheckSummary = CheckSummary'
  { -- | Account summary associated to the check.
    CheckSummary -> Maybe (HashMap CheckStatus Natural)
accountSummary :: Prelude.Maybe (Prelude.HashMap CheckStatus Prelude.Natural),
    CheckSummary -> Maybe Text
choiceId :: Prelude.Maybe Prelude.Text,
    -- | Trusted Advisor check description.
    CheckSummary -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | Trusted Advisor check ID.
    CheckSummary -> Maybe Text
id :: Prelude.Maybe Prelude.Text,
    -- | Well-Architected Lens ARN associated to the check.
    CheckSummary -> Maybe Text
lensArn :: Prelude.Maybe Prelude.Text,
    -- | Trusted Advisor check name.
    CheckSummary -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
    CheckSummary -> Maybe Text
pillarId :: Prelude.Maybe Prelude.Text,
    -- | Provider of the check related to the best practice.
    CheckSummary -> Maybe CheckProvider
provider :: Prelude.Maybe CheckProvider,
    CheckSummary -> Maybe Text
questionId :: Prelude.Maybe Prelude.Text,
    -- | Status associated to the check.
    CheckSummary -> Maybe CheckStatus
status :: Prelude.Maybe CheckStatus,
    CheckSummary -> Maybe POSIX
updatedAt :: Prelude.Maybe Data.POSIX
  }
  deriving (CheckSummary -> CheckSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CheckSummary -> CheckSummary -> Bool
$c/= :: CheckSummary -> CheckSummary -> Bool
== :: CheckSummary -> CheckSummary -> Bool
$c== :: CheckSummary -> CheckSummary -> Bool
Prelude.Eq, ReadPrec [CheckSummary]
ReadPrec CheckSummary
Int -> ReadS CheckSummary
ReadS [CheckSummary]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CheckSummary]
$creadListPrec :: ReadPrec [CheckSummary]
readPrec :: ReadPrec CheckSummary
$creadPrec :: ReadPrec CheckSummary
readList :: ReadS [CheckSummary]
$creadList :: ReadS [CheckSummary]
readsPrec :: Int -> ReadS CheckSummary
$creadsPrec :: Int -> ReadS CheckSummary
Prelude.Read, Int -> CheckSummary -> ShowS
[CheckSummary] -> ShowS
CheckSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CheckSummary] -> ShowS
$cshowList :: [CheckSummary] -> ShowS
show :: CheckSummary -> String
$cshow :: CheckSummary -> String
showsPrec :: Int -> CheckSummary -> ShowS
$cshowsPrec :: Int -> CheckSummary -> ShowS
Prelude.Show, forall x. Rep CheckSummary x -> CheckSummary
forall x. CheckSummary -> Rep CheckSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CheckSummary x -> CheckSummary
$cfrom :: forall x. CheckSummary -> Rep CheckSummary x
Prelude.Generic)

-- |
-- Create a value of 'CheckSummary' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'accountSummary', 'checkSummary_accountSummary' - Account summary associated to the check.
--
-- 'choiceId', 'checkSummary_choiceId' - Undocumented member.
--
-- 'description', 'checkSummary_description' - Trusted Advisor check description.
--
-- 'id', 'checkSummary_id' - Trusted Advisor check ID.
--
-- 'lensArn', 'checkSummary_lensArn' - Well-Architected Lens ARN associated to the check.
--
-- 'name', 'checkSummary_name' - Trusted Advisor check name.
--
-- 'pillarId', 'checkSummary_pillarId' - Undocumented member.
--
-- 'provider', 'checkSummary_provider' - Provider of the check related to the best practice.
--
-- 'questionId', 'checkSummary_questionId' - Undocumented member.
--
-- 'status', 'checkSummary_status' - Status associated to the check.
--
-- 'updatedAt', 'checkSummary_updatedAt' - Undocumented member.
newCheckSummary ::
  CheckSummary
newCheckSummary :: CheckSummary
newCheckSummary =
  CheckSummary'
    { $sel:accountSummary:CheckSummary' :: Maybe (HashMap CheckStatus Natural)
accountSummary = forall a. Maybe a
Prelude.Nothing,
      $sel:choiceId:CheckSummary' :: Maybe Text
choiceId = forall a. Maybe a
Prelude.Nothing,
      $sel:description:CheckSummary' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
      $sel:id:CheckSummary' :: Maybe Text
id = forall a. Maybe a
Prelude.Nothing,
      $sel:lensArn:CheckSummary' :: Maybe Text
lensArn = forall a. Maybe a
Prelude.Nothing,
      $sel:name:CheckSummary' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing,
      $sel:pillarId:CheckSummary' :: Maybe Text
pillarId = forall a. Maybe a
Prelude.Nothing,
      $sel:provider:CheckSummary' :: Maybe CheckProvider
provider = forall a. Maybe a
Prelude.Nothing,
      $sel:questionId:CheckSummary' :: Maybe Text
questionId = forall a. Maybe a
Prelude.Nothing,
      $sel:status:CheckSummary' :: Maybe CheckStatus
status = forall a. Maybe a
Prelude.Nothing,
      $sel:updatedAt:CheckSummary' :: Maybe POSIX
updatedAt = forall a. Maybe a
Prelude.Nothing
    }

-- | Account summary associated to the check.
checkSummary_accountSummary :: Lens.Lens' CheckSummary (Prelude.Maybe (Prelude.HashMap CheckStatus Prelude.Natural))
checkSummary_accountSummary :: Lens' CheckSummary (Maybe (HashMap CheckStatus Natural))
checkSummary_accountSummary = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe (HashMap CheckStatus Natural)
accountSummary :: Maybe (HashMap CheckStatus Natural)
$sel:accountSummary:CheckSummary' :: CheckSummary -> Maybe (HashMap CheckStatus Natural)
accountSummary} -> Maybe (HashMap CheckStatus Natural)
accountSummary) (\s :: CheckSummary
s@CheckSummary' {} Maybe (HashMap CheckStatus Natural)
a -> CheckSummary
s {$sel:accountSummary:CheckSummary' :: Maybe (HashMap CheckStatus Natural)
accountSummary = Maybe (HashMap CheckStatus Natural)
a} :: CheckSummary) 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

-- | Undocumented member.
checkSummary_choiceId :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_choiceId :: Lens' CheckSummary (Maybe Text)
checkSummary_choiceId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
choiceId :: Maybe Text
$sel:choiceId:CheckSummary' :: CheckSummary -> Maybe Text
choiceId} -> Maybe Text
choiceId) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:choiceId:CheckSummary' :: Maybe Text
choiceId = Maybe Text
a} :: CheckSummary)

-- | Trusted Advisor check description.
checkSummary_description :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_description :: Lens' CheckSummary (Maybe Text)
checkSummary_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
description :: Maybe Text
$sel:description:CheckSummary' :: CheckSummary -> Maybe Text
description} -> Maybe Text
description) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:description:CheckSummary' :: Maybe Text
description = Maybe Text
a} :: CheckSummary)

-- | Trusted Advisor check ID.
checkSummary_id :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_id :: Lens' CheckSummary (Maybe Text)
checkSummary_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
id :: Maybe Text
$sel:id:CheckSummary' :: CheckSummary -> Maybe Text
id} -> Maybe Text
id) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:id:CheckSummary' :: Maybe Text
id = Maybe Text
a} :: CheckSummary)

-- | Well-Architected Lens ARN associated to the check.
checkSummary_lensArn :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_lensArn :: Lens' CheckSummary (Maybe Text)
checkSummary_lensArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
lensArn :: Maybe Text
$sel:lensArn:CheckSummary' :: CheckSummary -> Maybe Text
lensArn} -> Maybe Text
lensArn) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:lensArn:CheckSummary' :: Maybe Text
lensArn = Maybe Text
a} :: CheckSummary)

-- | Trusted Advisor check name.
checkSummary_name :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_name :: Lens' CheckSummary (Maybe Text)
checkSummary_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
name :: Maybe Text
$sel:name:CheckSummary' :: CheckSummary -> Maybe Text
name} -> Maybe Text
name) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:name:CheckSummary' :: Maybe Text
name = Maybe Text
a} :: CheckSummary)

-- | Undocumented member.
checkSummary_pillarId :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_pillarId :: Lens' CheckSummary (Maybe Text)
checkSummary_pillarId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
pillarId :: Maybe Text
$sel:pillarId:CheckSummary' :: CheckSummary -> Maybe Text
pillarId} -> Maybe Text
pillarId) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:pillarId:CheckSummary' :: Maybe Text
pillarId = Maybe Text
a} :: CheckSummary)

-- | Provider of the check related to the best practice.
checkSummary_provider :: Lens.Lens' CheckSummary (Prelude.Maybe CheckProvider)
checkSummary_provider :: Lens' CheckSummary (Maybe CheckProvider)
checkSummary_provider = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe CheckProvider
provider :: Maybe CheckProvider
$sel:provider:CheckSummary' :: CheckSummary -> Maybe CheckProvider
provider} -> Maybe CheckProvider
provider) (\s :: CheckSummary
s@CheckSummary' {} Maybe CheckProvider
a -> CheckSummary
s {$sel:provider:CheckSummary' :: Maybe CheckProvider
provider = Maybe CheckProvider
a} :: CheckSummary)

-- | Undocumented member.
checkSummary_questionId :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.Text)
checkSummary_questionId :: Lens' CheckSummary (Maybe Text)
checkSummary_questionId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe Text
questionId :: Maybe Text
$sel:questionId:CheckSummary' :: CheckSummary -> Maybe Text
questionId} -> Maybe Text
questionId) (\s :: CheckSummary
s@CheckSummary' {} Maybe Text
a -> CheckSummary
s {$sel:questionId:CheckSummary' :: Maybe Text
questionId = Maybe Text
a} :: CheckSummary)

-- | Status associated to the check.
checkSummary_status :: Lens.Lens' CheckSummary (Prelude.Maybe CheckStatus)
checkSummary_status :: Lens' CheckSummary (Maybe CheckStatus)
checkSummary_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe CheckStatus
status :: Maybe CheckStatus
$sel:status:CheckSummary' :: CheckSummary -> Maybe CheckStatus
status} -> Maybe CheckStatus
status) (\s :: CheckSummary
s@CheckSummary' {} Maybe CheckStatus
a -> CheckSummary
s {$sel:status:CheckSummary' :: Maybe CheckStatus
status = Maybe CheckStatus
a} :: CheckSummary)

-- | Undocumented member.
checkSummary_updatedAt :: Lens.Lens' CheckSummary (Prelude.Maybe Prelude.UTCTime)
checkSummary_updatedAt :: Lens' CheckSummary (Maybe UTCTime)
checkSummary_updatedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CheckSummary' {Maybe POSIX
updatedAt :: Maybe POSIX
$sel:updatedAt:CheckSummary' :: CheckSummary -> Maybe POSIX
updatedAt} -> Maybe POSIX
updatedAt) (\s :: CheckSummary
s@CheckSummary' {} Maybe POSIX
a -> CheckSummary
s {$sel:updatedAt:CheckSummary' :: Maybe POSIX
updatedAt = Maybe POSIX
a} :: CheckSummary) 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

instance Data.FromJSON CheckSummary where
  parseJSON :: Value -> Parser CheckSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"CheckSummary"
      ( \Object
x ->
          Maybe (HashMap CheckStatus Natural)
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe CheckProvider
-> Maybe Text
-> Maybe CheckStatus
-> Maybe POSIX
-> CheckSummary
CheckSummary'
            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
"AccountSummary" 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
"ChoiceId")
            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
"Description")
            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
"Id")
            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
"LensArn")
            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
"Name")
            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
"PillarId")
            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
"Provider")
            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
"QuestionId")
            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
"Status")
            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
"UpdatedAt")
      )

instance Prelude.Hashable CheckSummary where
  hashWithSalt :: Int -> CheckSummary -> Int
hashWithSalt Int
_salt CheckSummary' {Maybe Text
Maybe (HashMap CheckStatus Natural)
Maybe POSIX
Maybe CheckProvider
Maybe CheckStatus
updatedAt :: Maybe POSIX
status :: Maybe CheckStatus
questionId :: Maybe Text
provider :: Maybe CheckProvider
pillarId :: Maybe Text
name :: Maybe Text
lensArn :: Maybe Text
id :: Maybe Text
description :: Maybe Text
choiceId :: Maybe Text
accountSummary :: Maybe (HashMap CheckStatus Natural)
$sel:updatedAt:CheckSummary' :: CheckSummary -> Maybe POSIX
$sel:status:CheckSummary' :: CheckSummary -> Maybe CheckStatus
$sel:questionId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:provider:CheckSummary' :: CheckSummary -> Maybe CheckProvider
$sel:pillarId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:name:CheckSummary' :: CheckSummary -> Maybe Text
$sel:lensArn:CheckSummary' :: CheckSummary -> Maybe Text
$sel:id:CheckSummary' :: CheckSummary -> Maybe Text
$sel:description:CheckSummary' :: CheckSummary -> Maybe Text
$sel:choiceId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:accountSummary:CheckSummary' :: CheckSummary -> Maybe (HashMap CheckStatus Natural)
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (HashMap CheckStatus Natural)
accountSummary
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
choiceId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
lensArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
pillarId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe CheckProvider
provider
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
questionId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe CheckStatus
status
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
updatedAt

instance Prelude.NFData CheckSummary where
  rnf :: CheckSummary -> ()
rnf CheckSummary' {Maybe Text
Maybe (HashMap CheckStatus Natural)
Maybe POSIX
Maybe CheckProvider
Maybe CheckStatus
updatedAt :: Maybe POSIX
status :: Maybe CheckStatus
questionId :: Maybe Text
provider :: Maybe CheckProvider
pillarId :: Maybe Text
name :: Maybe Text
lensArn :: Maybe Text
id :: Maybe Text
description :: Maybe Text
choiceId :: Maybe Text
accountSummary :: Maybe (HashMap CheckStatus Natural)
$sel:updatedAt:CheckSummary' :: CheckSummary -> Maybe POSIX
$sel:status:CheckSummary' :: CheckSummary -> Maybe CheckStatus
$sel:questionId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:provider:CheckSummary' :: CheckSummary -> Maybe CheckProvider
$sel:pillarId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:name:CheckSummary' :: CheckSummary -> Maybe Text
$sel:lensArn:CheckSummary' :: CheckSummary -> Maybe Text
$sel:id:CheckSummary' :: CheckSummary -> Maybe Text
$sel:description:CheckSummary' :: CheckSummary -> Maybe Text
$sel:choiceId:CheckSummary' :: CheckSummary -> Maybe Text
$sel:accountSummary:CheckSummary' :: CheckSummary -> Maybe (HashMap CheckStatus Natural)
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe (HashMap CheckStatus Natural)
accountSummary
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
choiceId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
description
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
lensArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
pillarId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe CheckProvider
provider
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
questionId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe CheckStatus
status
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
updatedAt