{-# 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.IoTAnalytics.Types.DatasetActionSummary -- 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.IoTAnalytics.Types.DatasetActionSummary where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoTAnalytics.Types.DatasetActionType import qualified Amazonka.Prelude as Prelude -- | Information about the action that automatically creates the dataset\'s -- contents. -- -- /See:/ 'newDatasetActionSummary' smart constructor. data DatasetActionSummary = DatasetActionSummary' { -- | The name of the action that automatically creates the dataset\'s -- contents. actionName :: Prelude.Maybe Prelude.Text, -- | The type of action by which the dataset\'s contents are automatically -- created. actionType :: Prelude.Maybe DatasetActionType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DatasetActionSummary' 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: -- -- 'actionName', 'datasetActionSummary_actionName' - The name of the action that automatically creates the dataset\'s -- contents. -- -- 'actionType', 'datasetActionSummary_actionType' - The type of action by which the dataset\'s contents are automatically -- created. newDatasetActionSummary :: DatasetActionSummary newDatasetActionSummary = DatasetActionSummary' { actionName = Prelude.Nothing, actionType = Prelude.Nothing } -- | The name of the action that automatically creates the dataset\'s -- contents. datasetActionSummary_actionName :: Lens.Lens' DatasetActionSummary (Prelude.Maybe Prelude.Text) datasetActionSummary_actionName = Lens.lens (\DatasetActionSummary' {actionName} -> actionName) (\s@DatasetActionSummary' {} a -> s {actionName = a} :: DatasetActionSummary) -- | The type of action by which the dataset\'s contents are automatically -- created. datasetActionSummary_actionType :: Lens.Lens' DatasetActionSummary (Prelude.Maybe DatasetActionType) datasetActionSummary_actionType = Lens.lens (\DatasetActionSummary' {actionType} -> actionType) (\s@DatasetActionSummary' {} a -> s {actionType = a} :: DatasetActionSummary) instance Data.FromJSON DatasetActionSummary where parseJSON = Data.withObject "DatasetActionSummary" ( \x -> DatasetActionSummary' Prelude.<$> (x Data..:? "actionName") Prelude.<*> (x Data..:? "actionType") ) instance Prelude.Hashable DatasetActionSummary where hashWithSalt _salt DatasetActionSummary' {..} = _salt `Prelude.hashWithSalt` actionName `Prelude.hashWithSalt` actionType instance Prelude.NFData DatasetActionSummary where rnf DatasetActionSummary' {..} = Prelude.rnf actionName `Prelude.seq` Prelude.rnf actionType