{-# 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.SecurityHub.Types.SensitiveDataResult -- 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.SecurityHub.Types.SensitiveDataResult 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.SecurityHub.Types.SensitiveDataDetections -- | Contains a detected instance of sensitive data that are based on -- built-in identifiers. -- -- /See:/ 'newSensitiveDataResult' smart constructor. data SensitiveDataResult = SensitiveDataResult' { -- | The category of sensitive data that was detected. For example, the -- category can indicate that the sensitive data involved credentials, -- financial information, or personal information. category :: Prelude.Maybe Prelude.Text, -- | The list of detected instances of sensitive data. detections :: Prelude.Maybe [SensitiveDataDetections], -- | The total number of occurrences of sensitive data. totalCount :: Prelude.Maybe Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SensitiveDataResult' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'category', 'sensitiveDataResult_category' - The category of sensitive data that was detected. For example, the -- category can indicate that the sensitive data involved credentials, -- financial information, or personal information. -- -- 'detections', 'sensitiveDataResult_detections' - The list of detected instances of sensitive data. -- -- 'totalCount', 'sensitiveDataResult_totalCount' - The total number of occurrences of sensitive data. newSensitiveDataResult :: SensitiveDataResult newSensitiveDataResult = SensitiveDataResult' { category = Prelude.Nothing, detections = Prelude.Nothing, totalCount = Prelude.Nothing } -- | The category of sensitive data that was detected. For example, the -- category can indicate that the sensitive data involved credentials, -- financial information, or personal information. sensitiveDataResult_category :: Lens.Lens' SensitiveDataResult (Prelude.Maybe Prelude.Text) sensitiveDataResult_category = Lens.lens (\SensitiveDataResult' {category} -> category) (\s@SensitiveDataResult' {} a -> s {category = a} :: SensitiveDataResult) -- | The list of detected instances of sensitive data. sensitiveDataResult_detections :: Lens.Lens' SensitiveDataResult (Prelude.Maybe [SensitiveDataDetections]) sensitiveDataResult_detections = Lens.lens (\SensitiveDataResult' {detections} -> detections) (\s@SensitiveDataResult' {} a -> s {detections = a} :: SensitiveDataResult) Prelude.. Lens.mapping Lens.coerced -- | The total number of occurrences of sensitive data. sensitiveDataResult_totalCount :: Lens.Lens' SensitiveDataResult (Prelude.Maybe Prelude.Integer) sensitiveDataResult_totalCount = Lens.lens (\SensitiveDataResult' {totalCount} -> totalCount) (\s@SensitiveDataResult' {} a -> s {totalCount = a} :: SensitiveDataResult) instance Data.FromJSON SensitiveDataResult where parseJSON = Data.withObject "SensitiveDataResult" ( \x -> SensitiveDataResult' Prelude.<$> (x Data..:? "Category") Prelude.<*> (x Data..:? "Detections" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "TotalCount") ) instance Prelude.Hashable SensitiveDataResult where hashWithSalt _salt SensitiveDataResult' {..} = _salt `Prelude.hashWithSalt` category `Prelude.hashWithSalt` detections `Prelude.hashWithSalt` totalCount instance Prelude.NFData SensitiveDataResult where rnf SensitiveDataResult' {..} = Prelude.rnf category `Prelude.seq` Prelude.rnf detections `Prelude.seq` Prelude.rnf totalCount instance Data.ToJSON SensitiveDataResult where toJSON SensitiveDataResult' {..} = Data.object ( Prelude.catMaybes [ ("Category" Data..=) Prelude.<$> category, ("Detections" Data..=) Prelude.<$> detections, ("TotalCount" Data..=) Prelude.<$> totalCount ] )