{-# 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.EMRServerless.Types.JobRunSummary
-- 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.EMRServerless.Types.JobRunSummary where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.EMRServerless.Types.JobRunState
import qualified Amazonka.Prelude as Prelude

-- | The summary of attributes associated with a job run.
--
-- /See:/ 'newJobRunSummary' smart constructor.
data JobRunSummary = JobRunSummary'
  { -- | The optional job run name. This doesn\'t have to be unique.
    JobRunSummary -> Maybe Text
name :: Prelude.Maybe Prelude.Text,
    -- | The type of job run, such as Spark or Hive.
    JobRunSummary -> Maybe Text
type' :: Prelude.Maybe Prelude.Text,
    -- | The ID of the application the job is running on.
    JobRunSummary -> Text
applicationId :: Prelude.Text,
    -- | The ID of the job run.
    JobRunSummary -> Text
id :: Prelude.Text,
    -- | The ARN of the job run.
    JobRunSummary -> Text
arn :: Prelude.Text,
    -- | The user who created the job run.
    JobRunSummary -> Text
createdBy :: Prelude.Text,
    -- | The date and time when the job run was created.
    JobRunSummary -> POSIX
createdAt :: Data.POSIX,
    -- | The date and time when the job run was last updated.
    JobRunSummary -> POSIX
updatedAt :: Data.POSIX,
    -- | The execution role ARN of the job run.
    JobRunSummary -> Text
executionRole :: Prelude.Text,
    -- | The state of the job run.
    JobRunSummary -> JobRunState
state :: JobRunState,
    -- | The state details of the job run.
    JobRunSummary -> Text
stateDetails :: Prelude.Text,
    -- | The EMR release associated with the application your job is running on.
    JobRunSummary -> Text
releaseLabel :: Prelude.Text
  }
  deriving (JobRunSummary -> JobRunSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: JobRunSummary -> JobRunSummary -> Bool
$c/= :: JobRunSummary -> JobRunSummary -> Bool
== :: JobRunSummary -> JobRunSummary -> Bool
$c== :: JobRunSummary -> JobRunSummary -> Bool
Prelude.Eq, ReadPrec [JobRunSummary]
ReadPrec JobRunSummary
Int -> ReadS JobRunSummary
ReadS [JobRunSummary]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [JobRunSummary]
$creadListPrec :: ReadPrec [JobRunSummary]
readPrec :: ReadPrec JobRunSummary
$creadPrec :: ReadPrec JobRunSummary
readList :: ReadS [JobRunSummary]
$creadList :: ReadS [JobRunSummary]
readsPrec :: Int -> ReadS JobRunSummary
$creadsPrec :: Int -> ReadS JobRunSummary
Prelude.Read, Int -> JobRunSummary -> ShowS
[JobRunSummary] -> ShowS
JobRunSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [JobRunSummary] -> ShowS
$cshowList :: [JobRunSummary] -> ShowS
show :: JobRunSummary -> String
$cshow :: JobRunSummary -> String
showsPrec :: Int -> JobRunSummary -> ShowS
$cshowsPrec :: Int -> JobRunSummary -> ShowS
Prelude.Show, forall x. Rep JobRunSummary x -> JobRunSummary
forall x. JobRunSummary -> Rep JobRunSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep JobRunSummary x -> JobRunSummary
$cfrom :: forall x. JobRunSummary -> Rep JobRunSummary x
Prelude.Generic)

-- |
-- Create a value of 'JobRunSummary' 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:
--
-- 'name', 'jobRunSummary_name' - The optional job run name. This doesn\'t have to be unique.
--
-- 'type'', 'jobRunSummary_type' - The type of job run, such as Spark or Hive.
--
-- 'applicationId', 'jobRunSummary_applicationId' - The ID of the application the job is running on.
--
-- 'id', 'jobRunSummary_id' - The ID of the job run.
--
-- 'arn', 'jobRunSummary_arn' - The ARN of the job run.
--
-- 'createdBy', 'jobRunSummary_createdBy' - The user who created the job run.
--
-- 'createdAt', 'jobRunSummary_createdAt' - The date and time when the job run was created.
--
-- 'updatedAt', 'jobRunSummary_updatedAt' - The date and time when the job run was last updated.
--
-- 'executionRole', 'jobRunSummary_executionRole' - The execution role ARN of the job run.
--
-- 'state', 'jobRunSummary_state' - The state of the job run.
--
-- 'stateDetails', 'jobRunSummary_stateDetails' - The state details of the job run.
--
-- 'releaseLabel', 'jobRunSummary_releaseLabel' - The EMR release associated with the application your job is running on.
newJobRunSummary ::
  -- | 'applicationId'
  Prelude.Text ->
  -- | 'id'
  Prelude.Text ->
  -- | 'arn'
  Prelude.Text ->
  -- | 'createdBy'
  Prelude.Text ->
  -- | 'createdAt'
  Prelude.UTCTime ->
  -- | 'updatedAt'
  Prelude.UTCTime ->
  -- | 'executionRole'
  Prelude.Text ->
  -- | 'state'
  JobRunState ->
  -- | 'stateDetails'
  Prelude.Text ->
  -- | 'releaseLabel'
  Prelude.Text ->
  JobRunSummary
newJobRunSummary :: Text
-> Text
-> Text
-> Text
-> UTCTime
-> UTCTime
-> Text
-> JobRunState
-> Text
-> Text
-> JobRunSummary
newJobRunSummary
  Text
pApplicationId_
  Text
pId_
  Text
pArn_
  Text
pCreatedBy_
  UTCTime
pCreatedAt_
  UTCTime
pUpdatedAt_
  Text
pExecutionRole_
  JobRunState
pState_
  Text
pStateDetails_
  Text
pReleaseLabel_ =
    JobRunSummary'
      { $sel:name:JobRunSummary' :: Maybe Text
name = forall a. Maybe a
Prelude.Nothing,
        $sel:type':JobRunSummary' :: Maybe Text
type' = forall a. Maybe a
Prelude.Nothing,
        $sel:applicationId:JobRunSummary' :: Text
applicationId = Text
pApplicationId_,
        $sel:id:JobRunSummary' :: Text
id = Text
pId_,
        $sel:arn:JobRunSummary' :: Text
arn = Text
pArn_,
        $sel:createdBy:JobRunSummary' :: Text
createdBy = Text
pCreatedBy_,
        $sel:createdAt:JobRunSummary' :: POSIX
createdAt = forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pCreatedAt_,
        $sel:updatedAt:JobRunSummary' :: POSIX
updatedAt = forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pUpdatedAt_,
        $sel:executionRole:JobRunSummary' :: Text
executionRole = Text
pExecutionRole_,
        $sel:state:JobRunSummary' :: JobRunState
state = JobRunState
pState_,
        $sel:stateDetails:JobRunSummary' :: Text
stateDetails = Text
pStateDetails_,
        $sel:releaseLabel:JobRunSummary' :: Text
releaseLabel = Text
pReleaseLabel_
      }

-- | The optional job run name. This doesn\'t have to be unique.
jobRunSummary_name :: Lens.Lens' JobRunSummary (Prelude.Maybe Prelude.Text)
jobRunSummary_name :: Lens' JobRunSummary (Maybe Text)
jobRunSummary_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Maybe Text
name :: Maybe Text
$sel:name:JobRunSummary' :: JobRunSummary -> Maybe Text
name} -> Maybe Text
name) (\s :: JobRunSummary
s@JobRunSummary' {} Maybe Text
a -> JobRunSummary
s {$sel:name:JobRunSummary' :: Maybe Text
name = Maybe Text
a} :: JobRunSummary)

-- | The type of job run, such as Spark or Hive.
jobRunSummary_type :: Lens.Lens' JobRunSummary (Prelude.Maybe Prelude.Text)
jobRunSummary_type :: Lens' JobRunSummary (Maybe Text)
jobRunSummary_type = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Maybe Text
type' :: Maybe Text
$sel:type':JobRunSummary' :: JobRunSummary -> Maybe Text
type'} -> Maybe Text
type') (\s :: JobRunSummary
s@JobRunSummary' {} Maybe Text
a -> JobRunSummary
s {$sel:type':JobRunSummary' :: Maybe Text
type' = Maybe Text
a} :: JobRunSummary)

-- | The ID of the application the job is running on.
jobRunSummary_applicationId :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_applicationId :: Lens' JobRunSummary Text
jobRunSummary_applicationId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
applicationId :: Text
$sel:applicationId:JobRunSummary' :: JobRunSummary -> Text
applicationId} -> Text
applicationId) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:applicationId:JobRunSummary' :: Text
applicationId = Text
a} :: JobRunSummary)

-- | The ID of the job run.
jobRunSummary_id :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_id :: Lens' JobRunSummary Text
jobRunSummary_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
id :: Text
$sel:id:JobRunSummary' :: JobRunSummary -> Text
id} -> Text
id) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:id:JobRunSummary' :: Text
id = Text
a} :: JobRunSummary)

-- | The ARN of the job run.
jobRunSummary_arn :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_arn :: Lens' JobRunSummary Text
jobRunSummary_arn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
arn :: Text
$sel:arn:JobRunSummary' :: JobRunSummary -> Text
arn} -> Text
arn) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:arn:JobRunSummary' :: Text
arn = Text
a} :: JobRunSummary)

-- | The user who created the job run.
jobRunSummary_createdBy :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_createdBy :: Lens' JobRunSummary Text
jobRunSummary_createdBy = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
createdBy :: Text
$sel:createdBy:JobRunSummary' :: JobRunSummary -> Text
createdBy} -> Text
createdBy) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:createdBy:JobRunSummary' :: Text
createdBy = Text
a} :: JobRunSummary)

-- | The date and time when the job run was created.
jobRunSummary_createdAt :: Lens.Lens' JobRunSummary Prelude.UTCTime
jobRunSummary_createdAt :: Lens' JobRunSummary UTCTime
jobRunSummary_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {POSIX
createdAt :: POSIX
$sel:createdAt:JobRunSummary' :: JobRunSummary -> POSIX
createdAt} -> POSIX
createdAt) (\s :: JobRunSummary
s@JobRunSummary' {} POSIX
a -> JobRunSummary
s {$sel:createdAt:JobRunSummary' :: POSIX
createdAt = POSIX
a} :: JobRunSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The date and time when the job run was last updated.
jobRunSummary_updatedAt :: Lens.Lens' JobRunSummary Prelude.UTCTime
jobRunSummary_updatedAt :: Lens' JobRunSummary UTCTime
jobRunSummary_updatedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {POSIX
updatedAt :: POSIX
$sel:updatedAt:JobRunSummary' :: JobRunSummary -> POSIX
updatedAt} -> POSIX
updatedAt) (\s :: JobRunSummary
s@JobRunSummary' {} POSIX
a -> JobRunSummary
s {$sel:updatedAt:JobRunSummary' :: POSIX
updatedAt = POSIX
a} :: JobRunSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The execution role ARN of the job run.
jobRunSummary_executionRole :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_executionRole :: Lens' JobRunSummary Text
jobRunSummary_executionRole = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
executionRole :: Text
$sel:executionRole:JobRunSummary' :: JobRunSummary -> Text
executionRole} -> Text
executionRole) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:executionRole:JobRunSummary' :: Text
executionRole = Text
a} :: JobRunSummary)

-- | The state of the job run.
jobRunSummary_state :: Lens.Lens' JobRunSummary JobRunState
jobRunSummary_state :: Lens' JobRunSummary JobRunState
jobRunSummary_state = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {JobRunState
state :: JobRunState
$sel:state:JobRunSummary' :: JobRunSummary -> JobRunState
state} -> JobRunState
state) (\s :: JobRunSummary
s@JobRunSummary' {} JobRunState
a -> JobRunSummary
s {$sel:state:JobRunSummary' :: JobRunState
state = JobRunState
a} :: JobRunSummary)

-- | The state details of the job run.
jobRunSummary_stateDetails :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_stateDetails :: Lens' JobRunSummary Text
jobRunSummary_stateDetails = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
stateDetails :: Text
$sel:stateDetails:JobRunSummary' :: JobRunSummary -> Text
stateDetails} -> Text
stateDetails) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:stateDetails:JobRunSummary' :: Text
stateDetails = Text
a} :: JobRunSummary)

-- | The EMR release associated with the application your job is running on.
jobRunSummary_releaseLabel :: Lens.Lens' JobRunSummary Prelude.Text
jobRunSummary_releaseLabel :: Lens' JobRunSummary Text
jobRunSummary_releaseLabel = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\JobRunSummary' {Text
releaseLabel :: Text
$sel:releaseLabel:JobRunSummary' :: JobRunSummary -> Text
releaseLabel} -> Text
releaseLabel) (\s :: JobRunSummary
s@JobRunSummary' {} Text
a -> JobRunSummary
s {$sel:releaseLabel:JobRunSummary' :: Text
releaseLabel = Text
a} :: JobRunSummary)

instance Data.FromJSON JobRunSummary where
  parseJSON :: Value -> Parser JobRunSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"JobRunSummary"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Text
-> Text
-> Text
-> Text
-> POSIX
-> POSIX
-> Text
-> JobRunState
-> Text
-> Text
-> JobRunSummary
JobRunSummary'
            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
"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
"type")
            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
"applicationId")
            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
"id")
            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
"arn")
            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
"createdBy")
            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
"createdAt")
            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
"updatedAt")
            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
"executionRole")
            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
"state")
            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
"stateDetails")
            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
"releaseLabel")
      )

instance Prelude.Hashable JobRunSummary where
  hashWithSalt :: Int -> JobRunSummary -> Int
hashWithSalt Int
_salt JobRunSummary' {Maybe Text
Text
POSIX
JobRunState
releaseLabel :: Text
stateDetails :: Text
state :: JobRunState
executionRole :: Text
updatedAt :: POSIX
createdAt :: POSIX
createdBy :: Text
arn :: Text
id :: Text
applicationId :: Text
type' :: Maybe Text
name :: Maybe Text
$sel:releaseLabel:JobRunSummary' :: JobRunSummary -> Text
$sel:stateDetails:JobRunSummary' :: JobRunSummary -> Text
$sel:state:JobRunSummary' :: JobRunSummary -> JobRunState
$sel:executionRole:JobRunSummary' :: JobRunSummary -> Text
$sel:updatedAt:JobRunSummary' :: JobRunSummary -> POSIX
$sel:createdAt:JobRunSummary' :: JobRunSummary -> POSIX
$sel:createdBy:JobRunSummary' :: JobRunSummary -> Text
$sel:arn:JobRunSummary' :: JobRunSummary -> Text
$sel:id:JobRunSummary' :: JobRunSummary -> Text
$sel:applicationId:JobRunSummary' :: JobRunSummary -> Text
$sel:type':JobRunSummary' :: JobRunSummary -> Maybe Text
$sel:name:JobRunSummary' :: JobRunSummary -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
type'
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
applicationId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
arn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
createdBy
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
createdAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
updatedAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
executionRole
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` JobRunState
state
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
stateDetails
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
releaseLabel

instance Prelude.NFData JobRunSummary where
  rnf :: JobRunSummary -> ()
rnf JobRunSummary' {Maybe Text
Text
POSIX
JobRunState
releaseLabel :: Text
stateDetails :: Text
state :: JobRunState
executionRole :: Text
updatedAt :: POSIX
createdAt :: POSIX
createdBy :: Text
arn :: Text
id :: Text
applicationId :: Text
type' :: Maybe Text
name :: Maybe Text
$sel:releaseLabel:JobRunSummary' :: JobRunSummary -> Text
$sel:stateDetails:JobRunSummary' :: JobRunSummary -> Text
$sel:state:JobRunSummary' :: JobRunSummary -> JobRunState
$sel:executionRole:JobRunSummary' :: JobRunSummary -> Text
$sel:updatedAt:JobRunSummary' :: JobRunSummary -> POSIX
$sel:createdAt:JobRunSummary' :: JobRunSummary -> POSIX
$sel:createdBy:JobRunSummary' :: JobRunSummary -> Text
$sel:arn:JobRunSummary' :: JobRunSummary -> Text
$sel:id:JobRunSummary' :: JobRunSummary -> Text
$sel:applicationId:JobRunSummary' :: JobRunSummary -> Text
$sel:type':JobRunSummary' :: JobRunSummary -> Maybe Text
$sel:name:JobRunSummary' :: JobRunSummary -> Maybe Text
..} =
    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
type'
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
applicationId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
arn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
createdBy
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
createdAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
updatedAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
executionRole
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf JobRunState
state
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
stateDetails
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
releaseLabel