{-# 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.VoiceId.Types.FraudsterRegistrationJobSummary
-- 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.VoiceId.Types.FraudsterRegistrationJobSummary 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.VoiceId.Types.FailureDetails
import Amazonka.VoiceId.Types.FraudsterRegistrationJobStatus
import Amazonka.VoiceId.Types.JobProgress

-- | Contains a summary of information about a fraudster registration job.
--
-- /See:/ 'newFraudsterRegistrationJobSummary' smart constructor.
data FraudsterRegistrationJobSummary = FraudsterRegistrationJobSummary'
  { -- | A timestamp showing when the fraudster registration job is created.
    FraudsterRegistrationJobSummary -> Maybe POSIX
createdAt :: Prelude.Maybe Data.POSIX,
    -- | The identifier of the domain containing the fraudster registration job.
    FraudsterRegistrationJobSummary -> Maybe Text
domainId :: Prelude.Maybe Prelude.Text,
    -- | A timestamp showing when the fraudster registration job ended.
    FraudsterRegistrationJobSummary -> Maybe POSIX
endedAt :: Prelude.Maybe Data.POSIX,
    -- | Contains details that are populated when an entire batch job fails. In
    -- cases of individual registration job failures, the batch job as a whole
    -- doesn\'t fail; it is completed with a @JobStatus@ of
    -- @COMPLETED_WITH_ERRORS@. You can use the job output file to identify the
    -- individual registration requests that failed.
    FraudsterRegistrationJobSummary -> Maybe FailureDetails
failureDetails :: Prelude.Maybe FailureDetails,
    -- | The service-generated identifier for the fraudster registration job.
    FraudsterRegistrationJobSummary -> Maybe Text
jobId :: Prelude.Maybe Prelude.Text,
    -- | The client-provided name for the fraudster registration job.
    FraudsterRegistrationJobSummary -> Maybe (Sensitive Text)
jobName :: Prelude.Maybe (Data.Sensitive Prelude.Text),
    -- | Shows the completed percentage of registration requests listed in the
    -- input file.
    FraudsterRegistrationJobSummary -> Maybe JobProgress
jobProgress :: Prelude.Maybe JobProgress,
    -- | The current status of the fraudster registration job.
    FraudsterRegistrationJobSummary
-> Maybe FraudsterRegistrationJobStatus
jobStatus :: Prelude.Maybe FraudsterRegistrationJobStatus
  }
  deriving (FraudsterRegistrationJobSummary
-> FraudsterRegistrationJobSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: FraudsterRegistrationJobSummary
-> FraudsterRegistrationJobSummary -> Bool
$c/= :: FraudsterRegistrationJobSummary
-> FraudsterRegistrationJobSummary -> Bool
== :: FraudsterRegistrationJobSummary
-> FraudsterRegistrationJobSummary -> Bool
$c== :: FraudsterRegistrationJobSummary
-> FraudsterRegistrationJobSummary -> Bool
Prelude.Eq, Int -> FraudsterRegistrationJobSummary -> ShowS
[FraudsterRegistrationJobSummary] -> ShowS
FraudsterRegistrationJobSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [FraudsterRegistrationJobSummary] -> ShowS
$cshowList :: [FraudsterRegistrationJobSummary] -> ShowS
show :: FraudsterRegistrationJobSummary -> String
$cshow :: FraudsterRegistrationJobSummary -> String
showsPrec :: Int -> FraudsterRegistrationJobSummary -> ShowS
$cshowsPrec :: Int -> FraudsterRegistrationJobSummary -> ShowS
Prelude.Show, forall x.
Rep FraudsterRegistrationJobSummary x
-> FraudsterRegistrationJobSummary
forall x.
FraudsterRegistrationJobSummary
-> Rep FraudsterRegistrationJobSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep FraudsterRegistrationJobSummary x
-> FraudsterRegistrationJobSummary
$cfrom :: forall x.
FraudsterRegistrationJobSummary
-> Rep FraudsterRegistrationJobSummary x
Prelude.Generic)

-- |
-- Create a value of 'FraudsterRegistrationJobSummary' 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', 'fraudsterRegistrationJobSummary_createdAt' - A timestamp showing when the fraudster registration job is created.
--
-- 'domainId', 'fraudsterRegistrationJobSummary_domainId' - The identifier of the domain containing the fraudster registration job.
--
-- 'endedAt', 'fraudsterRegistrationJobSummary_endedAt' - A timestamp showing when the fraudster registration job ended.
--
-- 'failureDetails', 'fraudsterRegistrationJobSummary_failureDetails' - Contains details that are populated when an entire batch job fails. In
-- cases of individual registration job failures, the batch job as a whole
-- doesn\'t fail; it is completed with a @JobStatus@ of
-- @COMPLETED_WITH_ERRORS@. You can use the job output file to identify the
-- individual registration requests that failed.
--
-- 'jobId', 'fraudsterRegistrationJobSummary_jobId' - The service-generated identifier for the fraudster registration job.
--
-- 'jobName', 'fraudsterRegistrationJobSummary_jobName' - The client-provided name for the fraudster registration job.
--
-- 'jobProgress', 'fraudsterRegistrationJobSummary_jobProgress' - Shows the completed percentage of registration requests listed in the
-- input file.
--
-- 'jobStatus', 'fraudsterRegistrationJobSummary_jobStatus' - The current status of the fraudster registration job.
newFraudsterRegistrationJobSummary ::
  FraudsterRegistrationJobSummary
newFraudsterRegistrationJobSummary :: FraudsterRegistrationJobSummary
newFraudsterRegistrationJobSummary =
  FraudsterRegistrationJobSummary'
    { $sel:createdAt:FraudsterRegistrationJobSummary' :: Maybe POSIX
createdAt =
        forall a. Maybe a
Prelude.Nothing,
      $sel:domainId:FraudsterRegistrationJobSummary' :: Maybe Text
domainId = forall a. Maybe a
Prelude.Nothing,
      $sel:endedAt:FraudsterRegistrationJobSummary' :: Maybe POSIX
endedAt = forall a. Maybe a
Prelude.Nothing,
      $sel:failureDetails:FraudsterRegistrationJobSummary' :: Maybe FailureDetails
failureDetails = forall a. Maybe a
Prelude.Nothing,
      $sel:jobId:FraudsterRegistrationJobSummary' :: Maybe Text
jobId = forall a. Maybe a
Prelude.Nothing,
      $sel:jobName:FraudsterRegistrationJobSummary' :: Maybe (Sensitive Text)
jobName = forall a. Maybe a
Prelude.Nothing,
      $sel:jobProgress:FraudsterRegistrationJobSummary' :: Maybe JobProgress
jobProgress = forall a. Maybe a
Prelude.Nothing,
      $sel:jobStatus:FraudsterRegistrationJobSummary' :: Maybe FraudsterRegistrationJobStatus
jobStatus = forall a. Maybe a
Prelude.Nothing
    }

-- | A timestamp showing when the fraudster registration job is created.
fraudsterRegistrationJobSummary_createdAt :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe Prelude.UTCTime)
fraudsterRegistrationJobSummary_createdAt :: Lens' FraudsterRegistrationJobSummary (Maybe UTCTime)
fraudsterRegistrationJobSummary_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe POSIX
createdAt :: Maybe POSIX
$sel:createdAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe POSIX
createdAt} -> Maybe POSIX
createdAt) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe POSIX
a -> FraudsterRegistrationJobSummary
s {$sel:createdAt:FraudsterRegistrationJobSummary' :: Maybe POSIX
createdAt = Maybe POSIX
a} :: FraudsterRegistrationJobSummary) 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

-- | The identifier of the domain containing the fraudster registration job.
fraudsterRegistrationJobSummary_domainId :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe Prelude.Text)
fraudsterRegistrationJobSummary_domainId :: Lens' FraudsterRegistrationJobSummary (Maybe Text)
fraudsterRegistrationJobSummary_domainId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe Text
domainId :: Maybe Text
$sel:domainId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
domainId} -> Maybe Text
domainId) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe Text
a -> FraudsterRegistrationJobSummary
s {$sel:domainId:FraudsterRegistrationJobSummary' :: Maybe Text
domainId = Maybe Text
a} :: FraudsterRegistrationJobSummary)

-- | A timestamp showing when the fraudster registration job ended.
fraudsterRegistrationJobSummary_endedAt :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe Prelude.UTCTime)
fraudsterRegistrationJobSummary_endedAt :: Lens' FraudsterRegistrationJobSummary (Maybe UTCTime)
fraudsterRegistrationJobSummary_endedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe POSIX
endedAt :: Maybe POSIX
$sel:endedAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe POSIX
endedAt} -> Maybe POSIX
endedAt) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe POSIX
a -> FraudsterRegistrationJobSummary
s {$sel:endedAt:FraudsterRegistrationJobSummary' :: Maybe POSIX
endedAt = Maybe POSIX
a} :: FraudsterRegistrationJobSummary) 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

-- | Contains details that are populated when an entire batch job fails. In
-- cases of individual registration job failures, the batch job as a whole
-- doesn\'t fail; it is completed with a @JobStatus@ of
-- @COMPLETED_WITH_ERRORS@. You can use the job output file to identify the
-- individual registration requests that failed.
fraudsterRegistrationJobSummary_failureDetails :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe FailureDetails)
fraudsterRegistrationJobSummary_failureDetails :: Lens' FraudsterRegistrationJobSummary (Maybe FailureDetails)
fraudsterRegistrationJobSummary_failureDetails = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe FailureDetails
failureDetails :: Maybe FailureDetails
$sel:failureDetails:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe FailureDetails
failureDetails} -> Maybe FailureDetails
failureDetails) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe FailureDetails
a -> FraudsterRegistrationJobSummary
s {$sel:failureDetails:FraudsterRegistrationJobSummary' :: Maybe FailureDetails
failureDetails = Maybe FailureDetails
a} :: FraudsterRegistrationJobSummary)

-- | The service-generated identifier for the fraudster registration job.
fraudsterRegistrationJobSummary_jobId :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe Prelude.Text)
fraudsterRegistrationJobSummary_jobId :: Lens' FraudsterRegistrationJobSummary (Maybe Text)
fraudsterRegistrationJobSummary_jobId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe Text
jobId :: Maybe Text
$sel:jobId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
jobId} -> Maybe Text
jobId) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe Text
a -> FraudsterRegistrationJobSummary
s {$sel:jobId:FraudsterRegistrationJobSummary' :: Maybe Text
jobId = Maybe Text
a} :: FraudsterRegistrationJobSummary)

-- | The client-provided name for the fraudster registration job.
fraudsterRegistrationJobSummary_jobName :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe Prelude.Text)
fraudsterRegistrationJobSummary_jobName :: Lens' FraudsterRegistrationJobSummary (Maybe Text)
fraudsterRegistrationJobSummary_jobName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe (Sensitive Text)
jobName :: Maybe (Sensitive Text)
$sel:jobName:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe (Sensitive Text)
jobName} -> Maybe (Sensitive Text)
jobName) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe (Sensitive Text)
a -> FraudsterRegistrationJobSummary
s {$sel:jobName:FraudsterRegistrationJobSummary' :: Maybe (Sensitive Text)
jobName = Maybe (Sensitive Text)
a} :: FraudsterRegistrationJobSummary) 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. Iso' (Sensitive a) a
Data._Sensitive

-- | Shows the completed percentage of registration requests listed in the
-- input file.
fraudsterRegistrationJobSummary_jobProgress :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe JobProgress)
fraudsterRegistrationJobSummary_jobProgress :: Lens' FraudsterRegistrationJobSummary (Maybe JobProgress)
fraudsterRegistrationJobSummary_jobProgress = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe JobProgress
jobProgress :: Maybe JobProgress
$sel:jobProgress:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe JobProgress
jobProgress} -> Maybe JobProgress
jobProgress) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe JobProgress
a -> FraudsterRegistrationJobSummary
s {$sel:jobProgress:FraudsterRegistrationJobSummary' :: Maybe JobProgress
jobProgress = Maybe JobProgress
a} :: FraudsterRegistrationJobSummary)

-- | The current status of the fraudster registration job.
fraudsterRegistrationJobSummary_jobStatus :: Lens.Lens' FraudsterRegistrationJobSummary (Prelude.Maybe FraudsterRegistrationJobStatus)
fraudsterRegistrationJobSummary_jobStatus :: Lens'
  FraudsterRegistrationJobSummary
  (Maybe FraudsterRegistrationJobStatus)
fraudsterRegistrationJobSummary_jobStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\FraudsterRegistrationJobSummary' {Maybe FraudsterRegistrationJobStatus
jobStatus :: Maybe FraudsterRegistrationJobStatus
$sel:jobStatus:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary
-> Maybe FraudsterRegistrationJobStatus
jobStatus} -> Maybe FraudsterRegistrationJobStatus
jobStatus) (\s :: FraudsterRegistrationJobSummary
s@FraudsterRegistrationJobSummary' {} Maybe FraudsterRegistrationJobStatus
a -> FraudsterRegistrationJobSummary
s {$sel:jobStatus:FraudsterRegistrationJobSummary' :: Maybe FraudsterRegistrationJobStatus
jobStatus = Maybe FraudsterRegistrationJobStatus
a} :: FraudsterRegistrationJobSummary)

instance
  Data.FromJSON
    FraudsterRegistrationJobSummary
  where
  parseJSON :: Value -> Parser FraudsterRegistrationJobSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"FraudsterRegistrationJobSummary"
      ( \Object
x ->
          Maybe POSIX
-> Maybe Text
-> Maybe POSIX
-> Maybe FailureDetails
-> Maybe Text
-> Maybe (Sensitive Text)
-> Maybe JobProgress
-> Maybe FraudsterRegistrationJobStatus
-> FraudsterRegistrationJobSummary
FraudsterRegistrationJobSummary'
            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
"DomainId")
            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
"EndedAt")
            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
"FailureDetails")
            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
"JobId")
            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
"JobName")
            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
"JobProgress")
            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
"JobStatus")
      )

instance
  Prelude.Hashable
    FraudsterRegistrationJobSummary
  where
  hashWithSalt :: Int -> FraudsterRegistrationJobSummary -> Int
hashWithSalt
    Int
_salt
    FraudsterRegistrationJobSummary' {Maybe Text
Maybe (Sensitive Text)
Maybe POSIX
Maybe FailureDetails
Maybe FraudsterRegistrationJobStatus
Maybe JobProgress
jobStatus :: Maybe FraudsterRegistrationJobStatus
jobProgress :: Maybe JobProgress
jobName :: Maybe (Sensitive Text)
jobId :: Maybe Text
failureDetails :: Maybe FailureDetails
endedAt :: Maybe POSIX
domainId :: Maybe Text
createdAt :: Maybe POSIX
$sel:jobStatus:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary
-> Maybe FraudsterRegistrationJobStatus
$sel:jobProgress:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe JobProgress
$sel:jobName:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe (Sensitive Text)
$sel:jobId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
$sel:failureDetails:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe FailureDetails
$sel:endedAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe POSIX
$sel:domainId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
$sel:createdAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> 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 Text
domainId
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe POSIX
endedAt
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe FailureDetails
failureDetails
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
jobId
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (Sensitive Text)
jobName
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe JobProgress
jobProgress
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe FraudsterRegistrationJobStatus
jobStatus

instance
  Prelude.NFData
    FraudsterRegistrationJobSummary
  where
  rnf :: FraudsterRegistrationJobSummary -> ()
rnf FraudsterRegistrationJobSummary' {Maybe Text
Maybe (Sensitive Text)
Maybe POSIX
Maybe FailureDetails
Maybe FraudsterRegistrationJobStatus
Maybe JobProgress
jobStatus :: Maybe FraudsterRegistrationJobStatus
jobProgress :: Maybe JobProgress
jobName :: Maybe (Sensitive Text)
jobId :: Maybe Text
failureDetails :: Maybe FailureDetails
endedAt :: Maybe POSIX
domainId :: Maybe Text
createdAt :: Maybe POSIX
$sel:jobStatus:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary
-> Maybe FraudsterRegistrationJobStatus
$sel:jobProgress:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe JobProgress
$sel:jobName:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe (Sensitive Text)
$sel:jobId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
$sel:failureDetails:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe FailureDetails
$sel:endedAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe POSIX
$sel:domainId:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> Maybe Text
$sel:createdAt:FraudsterRegistrationJobSummary' :: FraudsterRegistrationJobSummary -> 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 Text
domainId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe POSIX
endedAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe FailureDetails
failureDetails
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
jobId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive Text)
jobName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe JobProgress
jobProgress
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe FraudsterRegistrationJobStatus
jobStatus