{-# 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.GuardDuty.Types.Finding
-- 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.GuardDuty.Types.Finding where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.GuardDuty.Types.Resource
import Amazonka.GuardDuty.Types.ServiceInfo
import qualified Amazonka.Prelude as Prelude

-- | Contains information about the finding, which is generated when abnormal
-- or suspicious activity is detected.
--
-- /See:/ 'newFinding' smart constructor.
data Finding = Finding'
  { -- | The confidence score for the finding.
    Finding -> Maybe Double
confidence :: Prelude.Maybe Prelude.Double,
    -- | The description of the finding.
    Finding -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The partition associated with the finding.
    Finding -> Maybe Text
partition :: Prelude.Maybe Prelude.Text,
    Finding -> Maybe ServiceInfo
service :: Prelude.Maybe ServiceInfo,
    -- | The title of the finding.
    Finding -> Maybe Text
title :: Prelude.Maybe Prelude.Text,
    -- | The ID of the account in which the finding was generated.
    Finding -> Text
accountId :: Prelude.Text,
    -- | The ARN of the finding.
    Finding -> Text
arn :: Prelude.Text,
    -- | The time and date when the finding was created.
    Finding -> Text
createdAt :: Prelude.Text,
    -- | The ID of the finding.
    Finding -> Text
id :: Prelude.Text,
    -- | The Region where the finding was generated.
    Finding -> Text
region :: Prelude.Text,
    Finding -> Resource
resource :: Resource,
    -- | The version of the schema used for the finding.
    Finding -> Text
schemaVersion :: Prelude.Text,
    -- | The severity of the finding.
    Finding -> Double
severity :: Prelude.Double,
    -- | The type of finding.
    Finding -> Text
type' :: Prelude.Text,
    -- | The time and date when the finding was last updated.
    Finding -> Text
updatedAt :: Prelude.Text
  }
  deriving (Finding -> Finding -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Finding -> Finding -> Bool
$c/= :: Finding -> Finding -> Bool
== :: Finding -> Finding -> Bool
$c== :: Finding -> Finding -> Bool
Prelude.Eq, ReadPrec [Finding]
ReadPrec Finding
Int -> ReadS Finding
ReadS [Finding]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Finding]
$creadListPrec :: ReadPrec [Finding]
readPrec :: ReadPrec Finding
$creadPrec :: ReadPrec Finding
readList :: ReadS [Finding]
$creadList :: ReadS [Finding]
readsPrec :: Int -> ReadS Finding
$creadsPrec :: Int -> ReadS Finding
Prelude.Read, Int -> Finding -> ShowS
[Finding] -> ShowS
Finding -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Finding] -> ShowS
$cshowList :: [Finding] -> ShowS
show :: Finding -> String
$cshow :: Finding -> String
showsPrec :: Int -> Finding -> ShowS
$cshowsPrec :: Int -> Finding -> ShowS
Prelude.Show, forall x. Rep Finding x -> Finding
forall x. Finding -> Rep Finding x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Finding x -> Finding
$cfrom :: forall x. Finding -> Rep Finding x
Prelude.Generic)

-- |
-- Create a value of 'Finding' 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:
--
-- 'confidence', 'finding_confidence' - The confidence score for the finding.
--
-- 'description', 'finding_description' - The description of the finding.
--
-- 'partition', 'finding_partition' - The partition associated with the finding.
--
-- 'service', 'finding_service' - Undocumented member.
--
-- 'title', 'finding_title' - The title of the finding.
--
-- 'accountId', 'finding_accountId' - The ID of the account in which the finding was generated.
--
-- 'arn', 'finding_arn' - The ARN of the finding.
--
-- 'createdAt', 'finding_createdAt' - The time and date when the finding was created.
--
-- 'id', 'finding_id' - The ID of the finding.
--
-- 'region', 'finding_region' - The Region where the finding was generated.
--
-- 'resource', 'finding_resource' - Undocumented member.
--
-- 'schemaVersion', 'finding_schemaVersion' - The version of the schema used for the finding.
--
-- 'severity', 'finding_severity' - The severity of the finding.
--
-- 'type'', 'finding_type' - The type of finding.
--
-- 'updatedAt', 'finding_updatedAt' - The time and date when the finding was last updated.
newFinding ::
  -- | 'accountId'
  Prelude.Text ->
  -- | 'arn'
  Prelude.Text ->
  -- | 'createdAt'
  Prelude.Text ->
  -- | 'id'
  Prelude.Text ->
  -- | 'region'
  Prelude.Text ->
  -- | 'resource'
  Resource ->
  -- | 'schemaVersion'
  Prelude.Text ->
  -- | 'severity'
  Prelude.Double ->
  -- | 'type''
  Prelude.Text ->
  -- | 'updatedAt'
  Prelude.Text ->
  Finding
newFinding :: Text
-> Text
-> Text
-> Text
-> Text
-> Resource
-> Text
-> Double
-> Text
-> Text
-> Finding
newFinding
  Text
pAccountId_
  Text
pArn_
  Text
pCreatedAt_
  Text
pId_
  Text
pRegion_
  Resource
pResource_
  Text
pSchemaVersion_
  Double
pSeverity_
  Text
pType_
  Text
pUpdatedAt_ =
    Finding'
      { $sel:confidence:Finding' :: Maybe Double
confidence = forall a. Maybe a
Prelude.Nothing,
        $sel:description:Finding' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
        $sel:partition:Finding' :: Maybe Text
partition = forall a. Maybe a
Prelude.Nothing,
        $sel:service:Finding' :: Maybe ServiceInfo
service = forall a. Maybe a
Prelude.Nothing,
        $sel:title:Finding' :: Maybe Text
title = forall a. Maybe a
Prelude.Nothing,
        $sel:accountId:Finding' :: Text
accountId = Text
pAccountId_,
        $sel:arn:Finding' :: Text
arn = Text
pArn_,
        $sel:createdAt:Finding' :: Text
createdAt = Text
pCreatedAt_,
        $sel:id:Finding' :: Text
id = Text
pId_,
        $sel:region:Finding' :: Text
region = Text
pRegion_,
        $sel:resource:Finding' :: Resource
resource = Resource
pResource_,
        $sel:schemaVersion:Finding' :: Text
schemaVersion = Text
pSchemaVersion_,
        $sel:severity:Finding' :: Double
severity = Double
pSeverity_,
        $sel:type':Finding' :: Text
type' = Text
pType_,
        $sel:updatedAt:Finding' :: Text
updatedAt = Text
pUpdatedAt_
      }

-- | The confidence score for the finding.
finding_confidence :: Lens.Lens' Finding (Prelude.Maybe Prelude.Double)
finding_confidence :: Lens' Finding (Maybe Double)
finding_confidence = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Maybe Double
confidence :: Maybe Double
$sel:confidence:Finding' :: Finding -> Maybe Double
confidence} -> Maybe Double
confidence) (\s :: Finding
s@Finding' {} Maybe Double
a -> Finding
s {$sel:confidence:Finding' :: Maybe Double
confidence = Maybe Double
a} :: Finding)

-- | The description of the finding.
finding_description :: Lens.Lens' Finding (Prelude.Maybe Prelude.Text)
finding_description :: Lens' Finding (Maybe Text)
finding_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Maybe Text
description :: Maybe Text
$sel:description:Finding' :: Finding -> Maybe Text
description} -> Maybe Text
description) (\s :: Finding
s@Finding' {} Maybe Text
a -> Finding
s {$sel:description:Finding' :: Maybe Text
description = Maybe Text
a} :: Finding)

-- | The partition associated with the finding.
finding_partition :: Lens.Lens' Finding (Prelude.Maybe Prelude.Text)
finding_partition :: Lens' Finding (Maybe Text)
finding_partition = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Maybe Text
partition :: Maybe Text
$sel:partition:Finding' :: Finding -> Maybe Text
partition} -> Maybe Text
partition) (\s :: Finding
s@Finding' {} Maybe Text
a -> Finding
s {$sel:partition:Finding' :: Maybe Text
partition = Maybe Text
a} :: Finding)

-- | Undocumented member.
finding_service :: Lens.Lens' Finding (Prelude.Maybe ServiceInfo)
finding_service :: Lens' Finding (Maybe ServiceInfo)
finding_service = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Maybe ServiceInfo
service :: Maybe ServiceInfo
$sel:service:Finding' :: Finding -> Maybe ServiceInfo
service} -> Maybe ServiceInfo
service) (\s :: Finding
s@Finding' {} Maybe ServiceInfo
a -> Finding
s {$sel:service:Finding' :: Maybe ServiceInfo
service = Maybe ServiceInfo
a} :: Finding)

-- | The title of the finding.
finding_title :: Lens.Lens' Finding (Prelude.Maybe Prelude.Text)
finding_title :: Lens' Finding (Maybe Text)
finding_title = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Maybe Text
title :: Maybe Text
$sel:title:Finding' :: Finding -> Maybe Text
title} -> Maybe Text
title) (\s :: Finding
s@Finding' {} Maybe Text
a -> Finding
s {$sel:title:Finding' :: Maybe Text
title = Maybe Text
a} :: Finding)

-- | The ID of the account in which the finding was generated.
finding_accountId :: Lens.Lens' Finding Prelude.Text
finding_accountId :: Lens' Finding Text
finding_accountId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
accountId :: Text
$sel:accountId:Finding' :: Finding -> Text
accountId} -> Text
accountId) (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:accountId:Finding' :: Text
accountId = Text
a} :: Finding)

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

-- | The time and date when the finding was created.
finding_createdAt :: Lens.Lens' Finding Prelude.Text
finding_createdAt :: Lens' Finding Text
finding_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
createdAt :: Text
$sel:createdAt:Finding' :: Finding -> Text
createdAt} -> Text
createdAt) (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:createdAt:Finding' :: Text
createdAt = Text
a} :: Finding)

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

-- | The Region where the finding was generated.
finding_region :: Lens.Lens' Finding Prelude.Text
finding_region :: Lens' Finding Text
finding_region = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
region :: Text
$sel:region:Finding' :: Finding -> Text
region} -> Text
region) (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:region:Finding' :: Text
region = Text
a} :: Finding)

-- | Undocumented member.
finding_resource :: Lens.Lens' Finding Resource
finding_resource :: Lens' Finding Resource
finding_resource = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Resource
resource :: Resource
$sel:resource:Finding' :: Finding -> Resource
resource} -> Resource
resource) (\s :: Finding
s@Finding' {} Resource
a -> Finding
s {$sel:resource:Finding' :: Resource
resource = Resource
a} :: Finding)

-- | The version of the schema used for the finding.
finding_schemaVersion :: Lens.Lens' Finding Prelude.Text
finding_schemaVersion :: Lens' Finding Text
finding_schemaVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
schemaVersion :: Text
$sel:schemaVersion:Finding' :: Finding -> Text
schemaVersion} -> Text
schemaVersion) (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:schemaVersion:Finding' :: Text
schemaVersion = Text
a} :: Finding)

-- | The severity of the finding.
finding_severity :: Lens.Lens' Finding Prelude.Double
finding_severity :: Lens' Finding Double
finding_severity = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Double
severity :: Double
$sel:severity:Finding' :: Finding -> Double
severity} -> Double
severity) (\s :: Finding
s@Finding' {} Double
a -> Finding
s {$sel:severity:Finding' :: Double
severity = Double
a} :: Finding)

-- | The type of finding.
finding_type :: Lens.Lens' Finding Prelude.Text
finding_type :: Lens' Finding Text
finding_type = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
type' :: Text
$sel:type':Finding' :: Finding -> Text
type'} -> Text
type') (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:type':Finding' :: Text
type' = Text
a} :: Finding)

-- | The time and date when the finding was last updated.
finding_updatedAt :: Lens.Lens' Finding Prelude.Text
finding_updatedAt :: Lens' Finding Text
finding_updatedAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Finding' {Text
updatedAt :: Text
$sel:updatedAt:Finding' :: Finding -> Text
updatedAt} -> Text
updatedAt) (\s :: Finding
s@Finding' {} Text
a -> Finding
s {$sel:updatedAt:Finding' :: Text
updatedAt = Text
a} :: Finding)

instance Data.FromJSON Finding where
  parseJSON :: Value -> Parser Finding
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"Finding"
      ( \Object
x ->
          Maybe Double
-> Maybe Text
-> Maybe Text
-> Maybe ServiceInfo
-> Maybe Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> Resource
-> Text
-> Double
-> Text
-> Text
-> Finding
Finding'
            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
"confidence")
            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
"partition")
            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
"service")
            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
"title")
            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
"accountId")
            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
"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
"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
"region")
            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
"resource")
            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
"schemaVersion")
            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
"severity")
            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
"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
"updatedAt")
      )

instance Prelude.Hashable Finding where
  hashWithSalt :: Int -> Finding -> Int
hashWithSalt Int
_salt Finding' {Double
Maybe Double
Maybe Text
Maybe ServiceInfo
Text
Resource
updatedAt :: Text
type' :: Text
severity :: Double
schemaVersion :: Text
resource :: Resource
region :: Text
id :: Text
createdAt :: Text
arn :: Text
accountId :: Text
title :: Maybe Text
service :: Maybe ServiceInfo
partition :: Maybe Text
description :: Maybe Text
confidence :: Maybe Double
$sel:updatedAt:Finding' :: Finding -> Text
$sel:type':Finding' :: Finding -> Text
$sel:severity:Finding' :: Finding -> Double
$sel:schemaVersion:Finding' :: Finding -> Text
$sel:resource:Finding' :: Finding -> Resource
$sel:region:Finding' :: Finding -> Text
$sel:id:Finding' :: Finding -> Text
$sel:createdAt:Finding' :: Finding -> Text
$sel:arn:Finding' :: Finding -> Text
$sel:accountId:Finding' :: Finding -> Text
$sel:title:Finding' :: Finding -> Maybe Text
$sel:service:Finding' :: Finding -> Maybe ServiceInfo
$sel:partition:Finding' :: Finding -> Maybe Text
$sel:description:Finding' :: Finding -> Maybe Text
$sel:confidence:Finding' :: Finding -> Maybe Double
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Double
confidence
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
partition
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ServiceInfo
service
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
title
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
accountId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
arn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
createdAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
region
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Resource
resource
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
schemaVersion
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Double
severity
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
type'
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
updatedAt

instance Prelude.NFData Finding where
  rnf :: Finding -> ()
rnf Finding' {Double
Maybe Double
Maybe Text
Maybe ServiceInfo
Text
Resource
updatedAt :: Text
type' :: Text
severity :: Double
schemaVersion :: Text
resource :: Resource
region :: Text
id :: Text
createdAt :: Text
arn :: Text
accountId :: Text
title :: Maybe Text
service :: Maybe ServiceInfo
partition :: Maybe Text
description :: Maybe Text
confidence :: Maybe Double
$sel:updatedAt:Finding' :: Finding -> Text
$sel:type':Finding' :: Finding -> Text
$sel:severity:Finding' :: Finding -> Double
$sel:schemaVersion:Finding' :: Finding -> Text
$sel:resource:Finding' :: Finding -> Resource
$sel:region:Finding' :: Finding -> Text
$sel:id:Finding' :: Finding -> Text
$sel:createdAt:Finding' :: Finding -> Text
$sel:arn:Finding' :: Finding -> Text
$sel:accountId:Finding' :: Finding -> Text
$sel:title:Finding' :: Finding -> Maybe Text
$sel:service:Finding' :: Finding -> Maybe ServiceInfo
$sel:partition:Finding' :: Finding -> Maybe Text
$sel:description:Finding' :: Finding -> Maybe Text
$sel:confidence:Finding' :: Finding -> Maybe Double
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Double
confidence
      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
partition
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe ServiceInfo
service
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
title
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
accountId
      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
createdAt
      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
region
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Resource
resource
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
schemaVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Double
severity
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
type'
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
updatedAt