{-# 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.CustomDataIdentifiersDetections -- 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.CustomDataIdentifiersDetections 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.Occurrences -- | The list of detected instances of sensitive data. -- -- /See:/ 'newCustomDataIdentifiersDetections' smart constructor. data CustomDataIdentifiersDetections = CustomDataIdentifiersDetections' { -- | The ARN of the custom identifier that was used to detect the sensitive -- data. arn :: Prelude.Maybe Prelude.Text, -- | The total number of occurrences of sensitive data that were detected. count :: Prelude.Maybe Prelude.Integer, -- | he name of the custom identifier that detected the sensitive data. name :: Prelude.Maybe Prelude.Text, -- | Details about the sensitive data that was detected. occurrences :: Prelude.Maybe Occurrences } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CustomDataIdentifiersDetections' 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: -- -- 'arn', 'customDataIdentifiersDetections_arn' - The ARN of the custom identifier that was used to detect the sensitive -- data. -- -- 'count', 'customDataIdentifiersDetections_count' - The total number of occurrences of sensitive data that were detected. -- -- 'name', 'customDataIdentifiersDetections_name' - he name of the custom identifier that detected the sensitive data. -- -- 'occurrences', 'customDataIdentifiersDetections_occurrences' - Details about the sensitive data that was detected. newCustomDataIdentifiersDetections :: CustomDataIdentifiersDetections newCustomDataIdentifiersDetections = CustomDataIdentifiersDetections' { arn = Prelude.Nothing, count = Prelude.Nothing, name = Prelude.Nothing, occurrences = Prelude.Nothing } -- | The ARN of the custom identifier that was used to detect the sensitive -- data. customDataIdentifiersDetections_arn :: Lens.Lens' CustomDataIdentifiersDetections (Prelude.Maybe Prelude.Text) customDataIdentifiersDetections_arn = Lens.lens (\CustomDataIdentifiersDetections' {arn} -> arn) (\s@CustomDataIdentifiersDetections' {} a -> s {arn = a} :: CustomDataIdentifiersDetections) -- | The total number of occurrences of sensitive data that were detected. customDataIdentifiersDetections_count :: Lens.Lens' CustomDataIdentifiersDetections (Prelude.Maybe Prelude.Integer) customDataIdentifiersDetections_count = Lens.lens (\CustomDataIdentifiersDetections' {count} -> count) (\s@CustomDataIdentifiersDetections' {} a -> s {count = a} :: CustomDataIdentifiersDetections) -- | he name of the custom identifier that detected the sensitive data. customDataIdentifiersDetections_name :: Lens.Lens' CustomDataIdentifiersDetections (Prelude.Maybe Prelude.Text) customDataIdentifiersDetections_name = Lens.lens (\CustomDataIdentifiersDetections' {name} -> name) (\s@CustomDataIdentifiersDetections' {} a -> s {name = a} :: CustomDataIdentifiersDetections) -- | Details about the sensitive data that was detected. customDataIdentifiersDetections_occurrences :: Lens.Lens' CustomDataIdentifiersDetections (Prelude.Maybe Occurrences) customDataIdentifiersDetections_occurrences = Lens.lens (\CustomDataIdentifiersDetections' {occurrences} -> occurrences) (\s@CustomDataIdentifiersDetections' {} a -> s {occurrences = a} :: CustomDataIdentifiersDetections) instance Data.FromJSON CustomDataIdentifiersDetections where parseJSON = Data.withObject "CustomDataIdentifiersDetections" ( \x -> CustomDataIdentifiersDetections' Prelude.<$> (x Data..:? "Arn") Prelude.<*> (x Data..:? "Count") Prelude.<*> (x Data..:? "Name") Prelude.<*> (x Data..:? "Occurrences") ) instance Prelude.Hashable CustomDataIdentifiersDetections where hashWithSalt _salt CustomDataIdentifiersDetections' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` count `Prelude.hashWithSalt` name `Prelude.hashWithSalt` occurrences instance Prelude.NFData CustomDataIdentifiersDetections where rnf CustomDataIdentifiersDetections' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf count `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf occurrences instance Data.ToJSON CustomDataIdentifiersDetections where toJSON CustomDataIdentifiersDetections' {..} = Data.object ( Prelude.catMaybes [ ("Arn" Data..=) Prelude.<$> arn, ("Count" Data..=) Prelude.<$> count, ("Name" Data..=) Prelude.<$> name, ("Occurrences" Data..=) Prelude.<$> occurrences ] )