{-# 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.Config.Types.ConformancePackStatusDetail
-- 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.Config.Types.ConformancePackStatusDetail where

import Amazonka.Config.Types.ConformancePackState
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

-- | Status details of a conformance pack.
--
-- /See:/ 'newConformancePackStatusDetail' smart constructor.
data ConformancePackStatusDetail = ConformancePackStatusDetail'
  { -- | The reason of conformance pack creation failure.
    ConformancePackStatusDetail -> Maybe Text
conformancePackStatusReason :: Prelude.Maybe Prelude.Text,
    -- | Last time when conformation pack creation and update was successful.
    ConformancePackStatusDetail -> Maybe POSIX
lastUpdateCompletedTime :: Prelude.Maybe Data.POSIX,
    -- | Name of the conformance pack.
    ConformancePackStatusDetail -> Text
conformancePackName :: Prelude.Text,
    -- | ID of the conformance pack.
    ConformancePackStatusDetail -> Text
conformancePackId :: Prelude.Text,
    -- | Amazon Resource Name (ARN) of comformance pack.
    ConformancePackStatusDetail -> Text
conformancePackArn :: Prelude.Text,
    -- | Indicates deployment status of conformance pack.
    --
    -- Config sets the state of the conformance pack to:
    --
    -- -   CREATE_IN_PROGRESS when a conformance pack creation is in progress
    --     for an account.
    --
    -- -   CREATE_COMPLETE when a conformance pack has been successfully
    --     created in your account.
    --
    -- -   CREATE_FAILED when a conformance pack creation failed in your
    --     account.
    --
    -- -   DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
    --
    -- -   DELETE_FAILED when a conformance pack deletion failed in your
    --     account.
    ConformancePackStatusDetail -> ConformancePackState
conformancePackState :: ConformancePackState,
    -- | Amazon Resource Name (ARN) of CloudFormation stack.
    ConformancePackStatusDetail -> Text
stackArn :: Prelude.Text,
    -- | Last time when conformation pack creation and update was requested.
    ConformancePackStatusDetail -> POSIX
lastUpdateRequestedTime :: Data.POSIX
  }
  deriving (ConformancePackStatusDetail -> ConformancePackStatusDetail -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ConformancePackStatusDetail -> ConformancePackStatusDetail -> Bool
$c/= :: ConformancePackStatusDetail -> ConformancePackStatusDetail -> Bool
== :: ConformancePackStatusDetail -> ConformancePackStatusDetail -> Bool
$c== :: ConformancePackStatusDetail -> ConformancePackStatusDetail -> Bool
Prelude.Eq, ReadPrec [ConformancePackStatusDetail]
ReadPrec ConformancePackStatusDetail
Int -> ReadS ConformancePackStatusDetail
ReadS [ConformancePackStatusDetail]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ConformancePackStatusDetail]
$creadListPrec :: ReadPrec [ConformancePackStatusDetail]
readPrec :: ReadPrec ConformancePackStatusDetail
$creadPrec :: ReadPrec ConformancePackStatusDetail
readList :: ReadS [ConformancePackStatusDetail]
$creadList :: ReadS [ConformancePackStatusDetail]
readsPrec :: Int -> ReadS ConformancePackStatusDetail
$creadsPrec :: Int -> ReadS ConformancePackStatusDetail
Prelude.Read, Int -> ConformancePackStatusDetail -> ShowS
[ConformancePackStatusDetail] -> ShowS
ConformancePackStatusDetail -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ConformancePackStatusDetail] -> ShowS
$cshowList :: [ConformancePackStatusDetail] -> ShowS
show :: ConformancePackStatusDetail -> String
$cshow :: ConformancePackStatusDetail -> String
showsPrec :: Int -> ConformancePackStatusDetail -> ShowS
$cshowsPrec :: Int -> ConformancePackStatusDetail -> ShowS
Prelude.Show, forall x.
Rep ConformancePackStatusDetail x -> ConformancePackStatusDetail
forall x.
ConformancePackStatusDetail -> Rep ConformancePackStatusDetail x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep ConformancePackStatusDetail x -> ConformancePackStatusDetail
$cfrom :: forall x.
ConformancePackStatusDetail -> Rep ConformancePackStatusDetail x
Prelude.Generic)

-- |
-- Create a value of 'ConformancePackStatusDetail' 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:
--
-- 'conformancePackStatusReason', 'conformancePackStatusDetail_conformancePackStatusReason' - The reason of conformance pack creation failure.
--
-- 'lastUpdateCompletedTime', 'conformancePackStatusDetail_lastUpdateCompletedTime' - Last time when conformation pack creation and update was successful.
--
-- 'conformancePackName', 'conformancePackStatusDetail_conformancePackName' - Name of the conformance pack.
--
-- 'conformancePackId', 'conformancePackStatusDetail_conformancePackId' - ID of the conformance pack.
--
-- 'conformancePackArn', 'conformancePackStatusDetail_conformancePackArn' - Amazon Resource Name (ARN) of comformance pack.
--
-- 'conformancePackState', 'conformancePackStatusDetail_conformancePackState' - Indicates deployment status of conformance pack.
--
-- Config sets the state of the conformance pack to:
--
-- -   CREATE_IN_PROGRESS when a conformance pack creation is in progress
--     for an account.
--
-- -   CREATE_COMPLETE when a conformance pack has been successfully
--     created in your account.
--
-- -   CREATE_FAILED when a conformance pack creation failed in your
--     account.
--
-- -   DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
--
-- -   DELETE_FAILED when a conformance pack deletion failed in your
--     account.
--
-- 'stackArn', 'conformancePackStatusDetail_stackArn' - Amazon Resource Name (ARN) of CloudFormation stack.
--
-- 'lastUpdateRequestedTime', 'conformancePackStatusDetail_lastUpdateRequestedTime' - Last time when conformation pack creation and update was requested.
newConformancePackStatusDetail ::
  -- | 'conformancePackName'
  Prelude.Text ->
  -- | 'conformancePackId'
  Prelude.Text ->
  -- | 'conformancePackArn'
  Prelude.Text ->
  -- | 'conformancePackState'
  ConformancePackState ->
  -- | 'stackArn'
  Prelude.Text ->
  -- | 'lastUpdateRequestedTime'
  Prelude.UTCTime ->
  ConformancePackStatusDetail
newConformancePackStatusDetail :: Text
-> Text
-> Text
-> ConformancePackState
-> Text
-> UTCTime
-> ConformancePackStatusDetail
newConformancePackStatusDetail
  Text
pConformancePackName_
  Text
pConformancePackId_
  Text
pConformancePackArn_
  ConformancePackState
pConformancePackState_
  Text
pStackArn_
  UTCTime
pLastUpdateRequestedTime_ =
    ConformancePackStatusDetail'
      { $sel:conformancePackStatusReason:ConformancePackStatusDetail' :: Maybe Text
conformancePackStatusReason =
          forall a. Maybe a
Prelude.Nothing,
        $sel:lastUpdateCompletedTime:ConformancePackStatusDetail' :: Maybe POSIX
lastUpdateCompletedTime = forall a. Maybe a
Prelude.Nothing,
        $sel:conformancePackName:ConformancePackStatusDetail' :: Text
conformancePackName = Text
pConformancePackName_,
        $sel:conformancePackId:ConformancePackStatusDetail' :: Text
conformancePackId = Text
pConformancePackId_,
        $sel:conformancePackArn:ConformancePackStatusDetail' :: Text
conformancePackArn = Text
pConformancePackArn_,
        $sel:conformancePackState:ConformancePackStatusDetail' :: ConformancePackState
conformancePackState = ConformancePackState
pConformancePackState_,
        $sel:stackArn:ConformancePackStatusDetail' :: Text
stackArn = Text
pStackArn_,
        $sel:lastUpdateRequestedTime:ConformancePackStatusDetail' :: POSIX
lastUpdateRequestedTime =
          forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pLastUpdateRequestedTime_
      }

-- | The reason of conformance pack creation failure.
conformancePackStatusDetail_conformancePackStatusReason :: Lens.Lens' ConformancePackStatusDetail (Prelude.Maybe Prelude.Text)
conformancePackStatusDetail_conformancePackStatusReason :: Lens' ConformancePackStatusDetail (Maybe Text)
conformancePackStatusDetail_conformancePackStatusReason = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Maybe Text
conformancePackStatusReason :: Maybe Text
$sel:conformancePackStatusReason:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe Text
conformancePackStatusReason} -> Maybe Text
conformancePackStatusReason) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Maybe Text
a -> ConformancePackStatusDetail
s {$sel:conformancePackStatusReason:ConformancePackStatusDetail' :: Maybe Text
conformancePackStatusReason = Maybe Text
a} :: ConformancePackStatusDetail)

-- | Last time when conformation pack creation and update was successful.
conformancePackStatusDetail_lastUpdateCompletedTime :: Lens.Lens' ConformancePackStatusDetail (Prelude.Maybe Prelude.UTCTime)
conformancePackStatusDetail_lastUpdateCompletedTime :: Lens' ConformancePackStatusDetail (Maybe UTCTime)
conformancePackStatusDetail_lastUpdateCompletedTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Maybe POSIX
lastUpdateCompletedTime :: Maybe POSIX
$sel:lastUpdateCompletedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe POSIX
lastUpdateCompletedTime} -> Maybe POSIX
lastUpdateCompletedTime) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Maybe POSIX
a -> ConformancePackStatusDetail
s {$sel:lastUpdateCompletedTime:ConformancePackStatusDetail' :: Maybe POSIX
lastUpdateCompletedTime = Maybe POSIX
a} :: ConformancePackStatusDetail) 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

-- | Name of the conformance pack.
conformancePackStatusDetail_conformancePackName :: Lens.Lens' ConformancePackStatusDetail Prelude.Text
conformancePackStatusDetail_conformancePackName :: Lens' ConformancePackStatusDetail Text
conformancePackStatusDetail_conformancePackName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Text
conformancePackName :: Text
$sel:conformancePackName:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
conformancePackName} -> Text
conformancePackName) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Text
a -> ConformancePackStatusDetail
s {$sel:conformancePackName:ConformancePackStatusDetail' :: Text
conformancePackName = Text
a} :: ConformancePackStatusDetail)

-- | ID of the conformance pack.
conformancePackStatusDetail_conformancePackId :: Lens.Lens' ConformancePackStatusDetail Prelude.Text
conformancePackStatusDetail_conformancePackId :: Lens' ConformancePackStatusDetail Text
conformancePackStatusDetail_conformancePackId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Text
conformancePackId :: Text
$sel:conformancePackId:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
conformancePackId} -> Text
conformancePackId) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Text
a -> ConformancePackStatusDetail
s {$sel:conformancePackId:ConformancePackStatusDetail' :: Text
conformancePackId = Text
a} :: ConformancePackStatusDetail)

-- | Amazon Resource Name (ARN) of comformance pack.
conformancePackStatusDetail_conformancePackArn :: Lens.Lens' ConformancePackStatusDetail Prelude.Text
conformancePackStatusDetail_conformancePackArn :: Lens' ConformancePackStatusDetail Text
conformancePackStatusDetail_conformancePackArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Text
conformancePackArn :: Text
$sel:conformancePackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
conformancePackArn} -> Text
conformancePackArn) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Text
a -> ConformancePackStatusDetail
s {$sel:conformancePackArn:ConformancePackStatusDetail' :: Text
conformancePackArn = Text
a} :: ConformancePackStatusDetail)

-- | Indicates deployment status of conformance pack.
--
-- Config sets the state of the conformance pack to:
--
-- -   CREATE_IN_PROGRESS when a conformance pack creation is in progress
--     for an account.
--
-- -   CREATE_COMPLETE when a conformance pack has been successfully
--     created in your account.
--
-- -   CREATE_FAILED when a conformance pack creation failed in your
--     account.
--
-- -   DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
--
-- -   DELETE_FAILED when a conformance pack deletion failed in your
--     account.
conformancePackStatusDetail_conformancePackState :: Lens.Lens' ConformancePackStatusDetail ConformancePackState
conformancePackStatusDetail_conformancePackState :: Lens' ConformancePackStatusDetail ConformancePackState
conformancePackStatusDetail_conformancePackState = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {ConformancePackState
conformancePackState :: ConformancePackState
$sel:conformancePackState:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> ConformancePackState
conformancePackState} -> ConformancePackState
conformancePackState) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} ConformancePackState
a -> ConformancePackStatusDetail
s {$sel:conformancePackState:ConformancePackStatusDetail' :: ConformancePackState
conformancePackState = ConformancePackState
a} :: ConformancePackStatusDetail)

-- | Amazon Resource Name (ARN) of CloudFormation stack.
conformancePackStatusDetail_stackArn :: Lens.Lens' ConformancePackStatusDetail Prelude.Text
conformancePackStatusDetail_stackArn :: Lens' ConformancePackStatusDetail Text
conformancePackStatusDetail_stackArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {Text
stackArn :: Text
$sel:stackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
stackArn} -> Text
stackArn) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} Text
a -> ConformancePackStatusDetail
s {$sel:stackArn:ConformancePackStatusDetail' :: Text
stackArn = Text
a} :: ConformancePackStatusDetail)

-- | Last time when conformation pack creation and update was requested.
conformancePackStatusDetail_lastUpdateRequestedTime :: Lens.Lens' ConformancePackStatusDetail Prelude.UTCTime
conformancePackStatusDetail_lastUpdateRequestedTime :: Lens' ConformancePackStatusDetail UTCTime
conformancePackStatusDetail_lastUpdateRequestedTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ConformancePackStatusDetail' {POSIX
lastUpdateRequestedTime :: POSIX
$sel:lastUpdateRequestedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> POSIX
lastUpdateRequestedTime} -> POSIX
lastUpdateRequestedTime) (\s :: ConformancePackStatusDetail
s@ConformancePackStatusDetail' {} POSIX
a -> ConformancePackStatusDetail
s {$sel:lastUpdateRequestedTime:ConformancePackStatusDetail' :: POSIX
lastUpdateRequestedTime = POSIX
a} :: ConformancePackStatusDetail) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

instance Data.FromJSON ConformancePackStatusDetail where
  parseJSON :: Value -> Parser ConformancePackStatusDetail
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"ConformancePackStatusDetail"
      ( \Object
x ->
          Maybe Text
-> Maybe POSIX
-> Text
-> Text
-> Text
-> ConformancePackState
-> Text
-> POSIX
-> ConformancePackStatusDetail
ConformancePackStatusDetail'
            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
"ConformancePackStatusReason")
            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
"LastUpdateCompletedTime")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"ConformancePackName")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"ConformancePackId")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"ConformancePackArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"ConformancePackState")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"StackArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"LastUpdateRequestedTime")
      )

instance Prelude.Hashable ConformancePackStatusDetail where
  hashWithSalt :: Int -> ConformancePackStatusDetail -> Int
hashWithSalt Int
_salt ConformancePackStatusDetail' {Maybe Text
Maybe POSIX
Text
POSIX
ConformancePackState
lastUpdateRequestedTime :: POSIX
stackArn :: Text
conformancePackState :: ConformancePackState
conformancePackArn :: Text
conformancePackId :: Text
conformancePackName :: Text
lastUpdateCompletedTime :: Maybe POSIX
conformancePackStatusReason :: Maybe Text
$sel:lastUpdateRequestedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> POSIX
$sel:stackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackState:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> ConformancePackState
$sel:conformancePackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackId:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackName:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:lastUpdateCompletedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe POSIX
$sel:conformancePackStatusReason:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
conformancePackStatusReason
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
lastUpdateCompletedTime
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
conformancePackName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
conformancePackId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
conformancePackArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ConformancePackState
conformancePackState
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
stackArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
lastUpdateRequestedTime

instance Prelude.NFData ConformancePackStatusDetail where
  rnf :: ConformancePackStatusDetail -> ()
rnf ConformancePackStatusDetail' {Maybe Text
Maybe POSIX
Text
POSIX
ConformancePackState
lastUpdateRequestedTime :: POSIX
stackArn :: Text
conformancePackState :: ConformancePackState
conformancePackArn :: Text
conformancePackId :: Text
conformancePackName :: Text
lastUpdateCompletedTime :: Maybe POSIX
conformancePackStatusReason :: Maybe Text
$sel:lastUpdateRequestedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> POSIX
$sel:stackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackState:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> ConformancePackState
$sel:conformancePackArn:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackId:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:conformancePackName:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Text
$sel:lastUpdateCompletedTime:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe POSIX
$sel:conformancePackStatusReason:ConformancePackStatusDetail' :: ConformancePackStatusDetail -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
conformancePackStatusReason
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
lastUpdateCompletedTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
conformancePackName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
conformancePackId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
conformancePackArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf ConformancePackState
conformancePackState
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
stackArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
lastUpdateRequestedTime