{-# 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.IoTDeviceAdvisor.Types.SuiteRunInformation
-- 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.IoTDeviceAdvisor.Types.SuiteRunInformation where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IoTDeviceAdvisor.Types.SuiteRunStatus
import qualified Amazonka.Prelude as Prelude

-- | Information about the suite run.
--
-- Requires permission to access the
-- <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions SuiteRunInformation>
-- action.
--
-- /See:/ 'newSuiteRunInformation' smart constructor.
data SuiteRunInformation = SuiteRunInformation'
  { -- | Date (in Unix epoch time) when the suite run was created.
    SuiteRunInformation -> Maybe POSIX
createdAt :: Prelude.Maybe Data.POSIX,
    -- | Date (in Unix epoch time) when the suite run ended.
    SuiteRunInformation -> Maybe POSIX
endAt :: Prelude.Maybe Data.POSIX,
    -- | Number of test cases that failed in the suite run.
    SuiteRunInformation -> Maybe Natural
failed :: Prelude.Maybe Prelude.Natural,
    -- | Number of test cases that passed in the suite run.
    SuiteRunInformation -> Maybe Natural
passed :: Prelude.Maybe Prelude.Natural,
    -- | Date (in Unix epoch time) when the suite run was started.
    SuiteRunInformation -> Maybe POSIX
startedAt :: Prelude.Maybe Data.POSIX,
    -- | Status of the suite run.
    SuiteRunInformation -> Maybe SuiteRunStatus
status :: Prelude.Maybe SuiteRunStatus,
    -- | Suite definition ID of the suite run.
    SuiteRunInformation -> Maybe Text
suiteDefinitionId :: Prelude.Maybe Prelude.Text,
    -- | Suite definition name of the suite run.
    SuiteRunInformation -> Maybe Text
suiteDefinitionName :: Prelude.Maybe Prelude.Text,
    -- | Suite definition version of the suite run.
    SuiteRunInformation -> Maybe Text
suiteDefinitionVersion :: Prelude.Maybe Prelude.Text,
    -- | Suite run ID of the suite run.
    SuiteRunInformation -> Maybe Text
suiteRunId :: Prelude.Maybe Prelude.Text
  }
  deriving (SuiteRunInformation -> SuiteRunInformation -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SuiteRunInformation -> SuiteRunInformation -> Bool
$c/= :: SuiteRunInformation -> SuiteRunInformation -> Bool
== :: SuiteRunInformation -> SuiteRunInformation -> Bool
$c== :: SuiteRunInformation -> SuiteRunInformation -> Bool
Prelude.Eq, ReadPrec [SuiteRunInformation]
ReadPrec SuiteRunInformation
Int -> ReadS SuiteRunInformation
ReadS [SuiteRunInformation]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SuiteRunInformation]
$creadListPrec :: ReadPrec [SuiteRunInformation]
readPrec :: ReadPrec SuiteRunInformation
$creadPrec :: ReadPrec SuiteRunInformation
readList :: ReadS [SuiteRunInformation]
$creadList :: ReadS [SuiteRunInformation]
readsPrec :: Int -> ReadS SuiteRunInformation
$creadsPrec :: Int -> ReadS SuiteRunInformation
Prelude.Read, Int -> SuiteRunInformation -> ShowS
[SuiteRunInformation] -> ShowS
SuiteRunInformation -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SuiteRunInformation] -> ShowS
$cshowList :: [SuiteRunInformation] -> ShowS
show :: SuiteRunInformation -> String
$cshow :: SuiteRunInformation -> String
showsPrec :: Int -> SuiteRunInformation -> ShowS
$cshowsPrec :: Int -> SuiteRunInformation -> ShowS
Prelude.Show, forall x. Rep SuiteRunInformation x -> SuiteRunInformation
forall x. SuiteRunInformation -> Rep SuiteRunInformation x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep SuiteRunInformation x -> SuiteRunInformation
$cfrom :: forall x. SuiteRunInformation -> Rep SuiteRunInformation x
Prelude.Generic)

-- |
-- Create a value of 'SuiteRunInformation' 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:
--
-- 'createdAt', 'suiteRunInformation_createdAt' - Date (in Unix epoch time) when the suite run was created.
--
-- 'endAt', 'suiteRunInformation_endAt' - Date (in Unix epoch time) when the suite run ended.
--
-- 'failed', 'suiteRunInformation_failed' - Number of test cases that failed in the suite run.
--
-- 'passed', 'suiteRunInformation_passed' - Number of test cases that passed in the suite run.
--
-- 'startedAt', 'suiteRunInformation_startedAt' - Date (in Unix epoch time) when the suite run was started.
--
-- 'status', 'suiteRunInformation_status' - Status of the suite run.
--
-- 'suiteDefinitionId', 'suiteRunInformation_suiteDefinitionId' - Suite definition ID of the suite run.
--
-- 'suiteDefinitionName', 'suiteRunInformation_suiteDefinitionName' - Suite definition name of the suite run.
--
-- 'suiteDefinitionVersion', 'suiteRunInformation_suiteDefinitionVersion' - Suite definition version of the suite run.
--
-- 'suiteRunId', 'suiteRunInformation_suiteRunId' - Suite run ID of the suite run.
newSuiteRunInformation ::
  SuiteRunInformation
newSuiteRunInformation :: SuiteRunInformation
newSuiteRunInformation =
  SuiteRunInformation'
    { $sel:createdAt:SuiteRunInformation' :: Maybe POSIX
createdAt = forall a. Maybe a
Prelude.Nothing,
      $sel:endAt:SuiteRunInformation' :: Maybe POSIX
endAt = forall a. Maybe a
Prelude.Nothing,
      $sel:failed:SuiteRunInformation' :: Maybe Natural
failed = forall a. Maybe a
Prelude.Nothing,
      $sel:passed:SuiteRunInformation' :: Maybe Natural
passed = forall a. Maybe a
Prelude.Nothing,
      $sel:startedAt:SuiteRunInformation' :: Maybe POSIX
startedAt = forall a. Maybe a
Prelude.Nothing,
      $sel:status:SuiteRunInformation' :: Maybe SuiteRunStatus
status = forall a. Maybe a
Prelude.Nothing,
      $sel:suiteDefinitionId:SuiteRunInformation' :: Maybe Text
suiteDefinitionId = forall a. Maybe a
Prelude.Nothing,
      $sel:suiteDefinitionName:SuiteRunInformation' :: Maybe Text
suiteDefinitionName = forall a. Maybe a
Prelude.Nothing,
      $sel:suiteDefinitionVersion:SuiteRunInformation' :: Maybe Text
suiteDefinitionVersion = forall a. Maybe a
Prelude.Nothing,
      $sel:suiteRunId:SuiteRunInformation' :: Maybe Text
suiteRunId = forall a. Maybe a
Prelude.Nothing
    }

-- | Date (in Unix epoch time) when the suite run was created.
suiteRunInformation_createdAt :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.UTCTime)
suiteRunInformation_createdAt :: Lens' SuiteRunInformation (Maybe UTCTime)
suiteRunInformation_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe POSIX
createdAt :: Maybe POSIX
$sel:createdAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
createdAt} -> Maybe POSIX
createdAt) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe POSIX
a -> SuiteRunInformation
s {$sel:createdAt:SuiteRunInformation' :: Maybe POSIX
createdAt = Maybe POSIX
a} :: SuiteRunInformation) 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

-- | Date (in Unix epoch time) when the suite run ended.
suiteRunInformation_endAt :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.UTCTime)
suiteRunInformation_endAt :: Lens' SuiteRunInformation (Maybe UTCTime)
suiteRunInformation_endAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe POSIX
endAt :: Maybe POSIX
$sel:endAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
endAt} -> Maybe POSIX
endAt) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe POSIX
a -> SuiteRunInformation
s {$sel:endAt:SuiteRunInformation' :: Maybe POSIX
endAt = Maybe POSIX
a} :: SuiteRunInformation) 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

-- | Number of test cases that failed in the suite run.
suiteRunInformation_failed :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Natural)
suiteRunInformation_failed :: Lens' SuiteRunInformation (Maybe Natural)
suiteRunInformation_failed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Natural
failed :: Maybe Natural
$sel:failed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
failed} -> Maybe Natural
failed) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Natural
a -> SuiteRunInformation
s {$sel:failed:SuiteRunInformation' :: Maybe Natural
failed = Maybe Natural
a} :: SuiteRunInformation)

-- | Number of test cases that passed in the suite run.
suiteRunInformation_passed :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Natural)
suiteRunInformation_passed :: Lens' SuiteRunInformation (Maybe Natural)
suiteRunInformation_passed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Natural
passed :: Maybe Natural
$sel:passed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
passed} -> Maybe Natural
passed) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Natural
a -> SuiteRunInformation
s {$sel:passed:SuiteRunInformation' :: Maybe Natural
passed = Maybe Natural
a} :: SuiteRunInformation)

-- | Date (in Unix epoch time) when the suite run was started.
suiteRunInformation_startedAt :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.UTCTime)
suiteRunInformation_startedAt :: Lens' SuiteRunInformation (Maybe UTCTime)
suiteRunInformation_startedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe POSIX
startedAt :: Maybe POSIX
$sel:startedAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
startedAt} -> Maybe POSIX
startedAt) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe POSIX
a -> SuiteRunInformation
s {$sel:startedAt:SuiteRunInformation' :: Maybe POSIX
startedAt = Maybe POSIX
a} :: SuiteRunInformation) 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

-- | Status of the suite run.
suiteRunInformation_status :: Lens.Lens' SuiteRunInformation (Prelude.Maybe SuiteRunStatus)
suiteRunInformation_status :: Lens' SuiteRunInformation (Maybe SuiteRunStatus)
suiteRunInformation_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe SuiteRunStatus
status :: Maybe SuiteRunStatus
$sel:status:SuiteRunInformation' :: SuiteRunInformation -> Maybe SuiteRunStatus
status} -> Maybe SuiteRunStatus
status) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe SuiteRunStatus
a -> SuiteRunInformation
s {$sel:status:SuiteRunInformation' :: Maybe SuiteRunStatus
status = Maybe SuiteRunStatus
a} :: SuiteRunInformation)

-- | Suite definition ID of the suite run.
suiteRunInformation_suiteDefinitionId :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Text)
suiteRunInformation_suiteDefinitionId :: Lens' SuiteRunInformation (Maybe Text)
suiteRunInformation_suiteDefinitionId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Text
suiteDefinitionId :: Maybe Text
$sel:suiteDefinitionId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
suiteDefinitionId} -> Maybe Text
suiteDefinitionId) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Text
a -> SuiteRunInformation
s {$sel:suiteDefinitionId:SuiteRunInformation' :: Maybe Text
suiteDefinitionId = Maybe Text
a} :: SuiteRunInformation)

-- | Suite definition name of the suite run.
suiteRunInformation_suiteDefinitionName :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Text)
suiteRunInformation_suiteDefinitionName :: Lens' SuiteRunInformation (Maybe Text)
suiteRunInformation_suiteDefinitionName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Text
suiteDefinitionName :: Maybe Text
$sel:suiteDefinitionName:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
suiteDefinitionName} -> Maybe Text
suiteDefinitionName) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Text
a -> SuiteRunInformation
s {$sel:suiteDefinitionName:SuiteRunInformation' :: Maybe Text
suiteDefinitionName = Maybe Text
a} :: SuiteRunInformation)

-- | Suite definition version of the suite run.
suiteRunInformation_suiteDefinitionVersion :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Text)
suiteRunInformation_suiteDefinitionVersion :: Lens' SuiteRunInformation (Maybe Text)
suiteRunInformation_suiteDefinitionVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Text
suiteDefinitionVersion :: Maybe Text
$sel:suiteDefinitionVersion:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
suiteDefinitionVersion} -> Maybe Text
suiteDefinitionVersion) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Text
a -> SuiteRunInformation
s {$sel:suiteDefinitionVersion:SuiteRunInformation' :: Maybe Text
suiteDefinitionVersion = Maybe Text
a} :: SuiteRunInformation)

-- | Suite run ID of the suite run.
suiteRunInformation_suiteRunId :: Lens.Lens' SuiteRunInformation (Prelude.Maybe Prelude.Text)
suiteRunInformation_suiteRunId :: Lens' SuiteRunInformation (Maybe Text)
suiteRunInformation_suiteRunId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SuiteRunInformation' {Maybe Text
suiteRunId :: Maybe Text
$sel:suiteRunId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
suiteRunId} -> Maybe Text
suiteRunId) (\s :: SuiteRunInformation
s@SuiteRunInformation' {} Maybe Text
a -> SuiteRunInformation
s {$sel:suiteRunId:SuiteRunInformation' :: Maybe Text
suiteRunId = Maybe Text
a} :: SuiteRunInformation)

instance Data.FromJSON SuiteRunInformation where
  parseJSON :: Value -> Parser SuiteRunInformation
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"SuiteRunInformation"
      ( \Object
x ->
          Maybe POSIX
-> Maybe POSIX
-> Maybe Natural
-> Maybe Natural
-> Maybe POSIX
-> Maybe SuiteRunStatus
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> SuiteRunInformation
SuiteRunInformation'
            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
"createdAt")
            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
"endAt")
            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
"failed")
            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
"passed")
            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
"startedAt")
            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
"suiteDefinitionId")
            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
"suiteDefinitionName")
            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
"suiteDefinitionVersion")
            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
"suiteRunId")
      )

instance Prelude.Hashable SuiteRunInformation where
  hashWithSalt :: Int -> SuiteRunInformation -> Int
hashWithSalt Int
_salt SuiteRunInformation' {Maybe Natural
Maybe Text
Maybe POSIX
Maybe SuiteRunStatus
suiteRunId :: Maybe Text
suiteDefinitionVersion :: Maybe Text
suiteDefinitionName :: Maybe Text
suiteDefinitionId :: Maybe Text
status :: Maybe SuiteRunStatus
startedAt :: Maybe POSIX
passed :: Maybe Natural
failed :: Maybe Natural
endAt :: Maybe POSIX
createdAt :: Maybe POSIX
$sel:suiteRunId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionVersion:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionName:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:status:SuiteRunInformation' :: SuiteRunInformation -> Maybe SuiteRunStatus
$sel:startedAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
$sel:passed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
$sel:failed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
$sel:endAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
$sel:createdAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
createdAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
endAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
failed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
passed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
startedAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe SuiteRunStatus
status
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
suiteDefinitionId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
suiteDefinitionName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
suiteDefinitionVersion
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
suiteRunId

instance Prelude.NFData SuiteRunInformation where
  rnf :: SuiteRunInformation -> ()
rnf SuiteRunInformation' {Maybe Natural
Maybe Text
Maybe POSIX
Maybe SuiteRunStatus
suiteRunId :: Maybe Text
suiteDefinitionVersion :: Maybe Text
suiteDefinitionName :: Maybe Text
suiteDefinitionId :: Maybe Text
status :: Maybe SuiteRunStatus
startedAt :: Maybe POSIX
passed :: Maybe Natural
failed :: Maybe Natural
endAt :: Maybe POSIX
createdAt :: Maybe POSIX
$sel:suiteRunId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionVersion:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionName:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:suiteDefinitionId:SuiteRunInformation' :: SuiteRunInformation -> Maybe Text
$sel:status:SuiteRunInformation' :: SuiteRunInformation -> Maybe SuiteRunStatus
$sel:startedAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
$sel:passed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
$sel:failed:SuiteRunInformation' :: SuiteRunInformation -> Maybe Natural
$sel:endAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
$sel:createdAt:SuiteRunInformation' :: SuiteRunInformation -> Maybe POSIX
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
createdAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
endAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
failed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
passed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
startedAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe SuiteRunStatus
status
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
suiteDefinitionId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
suiteDefinitionName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
suiteDefinitionVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
suiteRunId