{-# 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.DynamoDB.Types.ContinuousBackupsDescription -- 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.DynamoDB.Types.ContinuousBackupsDescription where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DynamoDB.Types.AttributeValue import Amazonka.DynamoDB.Types.ContinuousBackupsStatus import Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription import Amazonka.DynamoDB.Types.WriteRequest import qualified Amazonka.Prelude as Prelude -- | Represents the continuous backups and point in time recovery settings on -- the table. -- -- /See:/ 'newContinuousBackupsDescription' smart constructor. data ContinuousBackupsDescription = ContinuousBackupsDescription' { -- | The description of the point in time recovery settings applied to the -- table. pointInTimeRecoveryDescription :: Prelude.Maybe PointInTimeRecoveryDescription, -- | @ContinuousBackupsStatus@ can be one of the following states: ENABLED, -- DISABLED continuousBackupsStatus :: ContinuousBackupsStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ContinuousBackupsDescription' 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: -- -- 'pointInTimeRecoveryDescription', 'continuousBackupsDescription_pointInTimeRecoveryDescription' - The description of the point in time recovery settings applied to the -- table. -- -- 'continuousBackupsStatus', 'continuousBackupsDescription_continuousBackupsStatus' - @ContinuousBackupsStatus@ can be one of the following states: ENABLED, -- DISABLED newContinuousBackupsDescription :: -- | 'continuousBackupsStatus' ContinuousBackupsStatus -> ContinuousBackupsDescription newContinuousBackupsDescription pContinuousBackupsStatus_ = ContinuousBackupsDescription' { pointInTimeRecoveryDescription = Prelude.Nothing, continuousBackupsStatus = pContinuousBackupsStatus_ } -- | The description of the point in time recovery settings applied to the -- table. continuousBackupsDescription_pointInTimeRecoveryDescription :: Lens.Lens' ContinuousBackupsDescription (Prelude.Maybe PointInTimeRecoveryDescription) continuousBackupsDescription_pointInTimeRecoveryDescription = Lens.lens (\ContinuousBackupsDescription' {pointInTimeRecoveryDescription} -> pointInTimeRecoveryDescription) (\s@ContinuousBackupsDescription' {} a -> s {pointInTimeRecoveryDescription = a} :: ContinuousBackupsDescription) -- | @ContinuousBackupsStatus@ can be one of the following states: ENABLED, -- DISABLED continuousBackupsDescription_continuousBackupsStatus :: Lens.Lens' ContinuousBackupsDescription ContinuousBackupsStatus continuousBackupsDescription_continuousBackupsStatus = Lens.lens (\ContinuousBackupsDescription' {continuousBackupsStatus} -> continuousBackupsStatus) (\s@ContinuousBackupsDescription' {} a -> s {continuousBackupsStatus = a} :: ContinuousBackupsDescription) instance Data.FromJSON ContinuousBackupsDescription where parseJSON = Data.withObject "ContinuousBackupsDescription" ( \x -> ContinuousBackupsDescription' Prelude.<$> (x Data..:? "PointInTimeRecoveryDescription") Prelude.<*> (x Data..: "ContinuousBackupsStatus") ) instance Prelude.Hashable ContinuousBackupsDescription where hashWithSalt _salt ContinuousBackupsDescription' {..} = _salt `Prelude.hashWithSalt` pointInTimeRecoveryDescription `Prelude.hashWithSalt` continuousBackupsStatus instance Prelude.NFData ContinuousBackupsDescription where rnf ContinuousBackupsDescription' {..} = Prelude.rnf pointInTimeRecoveryDescription `Prelude.seq` Prelude.rnf continuousBackupsStatus