{-# 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.UsageDataSourceResult -- 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.UsageDataSourceResult 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.DataSource import Amazonka.GuardDuty.Types.Total import qualified Amazonka.Prelude as Prelude -- | Contains information on the result of usage based on data source type. -- -- /See:/ 'newUsageDataSourceResult' smart constructor. data UsageDataSourceResult = UsageDataSourceResult' { -- | The data source type that generated usage. dataSource :: Prelude.Maybe DataSource, -- | Represents the total of usage for the specified data source. total :: Prelude.Maybe Total } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UsageDataSourceResult' 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: -- -- 'dataSource', 'usageDataSourceResult_dataSource' - The data source type that generated usage. -- -- 'total', 'usageDataSourceResult_total' - Represents the total of usage for the specified data source. newUsageDataSourceResult :: UsageDataSourceResult newUsageDataSourceResult = UsageDataSourceResult' { dataSource = Prelude.Nothing, total = Prelude.Nothing } -- | The data source type that generated usage. usageDataSourceResult_dataSource :: Lens.Lens' UsageDataSourceResult (Prelude.Maybe DataSource) usageDataSourceResult_dataSource = Lens.lens (\UsageDataSourceResult' {dataSource} -> dataSource) (\s@UsageDataSourceResult' {} a -> s {dataSource = a} :: UsageDataSourceResult) -- | Represents the total of usage for the specified data source. usageDataSourceResult_total :: Lens.Lens' UsageDataSourceResult (Prelude.Maybe Total) usageDataSourceResult_total = Lens.lens (\UsageDataSourceResult' {total} -> total) (\s@UsageDataSourceResult' {} a -> s {total = a} :: UsageDataSourceResult) instance Data.FromJSON UsageDataSourceResult where parseJSON = Data.withObject "UsageDataSourceResult" ( \x -> UsageDataSourceResult' Prelude.<$> (x Data..:? "dataSource") Prelude.<*> (x Data..:? "total") ) instance Prelude.Hashable UsageDataSourceResult where hashWithSalt _salt UsageDataSourceResult' {..} = _salt `Prelude.hashWithSalt` dataSource `Prelude.hashWithSalt` total instance Prelude.NFData UsageDataSourceResult where rnf UsageDataSourceResult' {..} = Prelude.rnf dataSource `Prelude.seq` Prelude.rnf total