{-# 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.MacieV2.Types.GroupCount -- 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.MacieV2.Types.GroupCount 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 -- | Provides a group of results for a query that retrieved aggregated -- statistical data about findings. -- -- /See:/ 'newGroupCount' smart constructor. data GroupCount = GroupCount' { -- | The total number of findings in the group of query results. count :: Prelude.Maybe Prelude.Integer, -- | The name of the property that defines the group in the query results, as -- specified by the groupBy property in the query request. groupKey :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GroupCount' 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: -- -- 'count', 'groupCount_count' - The total number of findings in the group of query results. -- -- 'groupKey', 'groupCount_groupKey' - The name of the property that defines the group in the query results, as -- specified by the groupBy property in the query request. newGroupCount :: GroupCount newGroupCount = GroupCount' { count = Prelude.Nothing, groupKey = Prelude.Nothing } -- | The total number of findings in the group of query results. groupCount_count :: Lens.Lens' GroupCount (Prelude.Maybe Prelude.Integer) groupCount_count = Lens.lens (\GroupCount' {count} -> count) (\s@GroupCount' {} a -> s {count = a} :: GroupCount) -- | The name of the property that defines the group in the query results, as -- specified by the groupBy property in the query request. groupCount_groupKey :: Lens.Lens' GroupCount (Prelude.Maybe Prelude.Text) groupCount_groupKey = Lens.lens (\GroupCount' {groupKey} -> groupKey) (\s@GroupCount' {} a -> s {groupKey = a} :: GroupCount) instance Data.FromJSON GroupCount where parseJSON = Data.withObject "GroupCount" ( \x -> GroupCount' Prelude.<$> (x Data..:? "count") Prelude.<*> (x Data..:? "groupKey") ) instance Prelude.Hashable GroupCount where hashWithSalt _salt GroupCount' {..} = _salt `Prelude.hashWithSalt` count `Prelude.hashWithSalt` groupKey instance Prelude.NFData GroupCount where rnf GroupCount' {..} = Prelude.rnf count `Prelude.seq` Prelude.rnf groupKey