amazonka-dynamodb-2.0: Amazon DynamoDB SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Description

 
Synopsis

Documentation

data PointInTimeRecoveryDescription Source #

The description of the point in time settings applied to the table.

See: newPointInTimeRecoveryDescription smart constructor.

Constructors

PointInTimeRecoveryDescription' 

Fields

Instances

Instances details
FromJSON PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Generic PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Associated Types

type Rep PointInTimeRecoveryDescription :: Type -> Type #

Read PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Show PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

NFData PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Eq PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

Hashable PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

type Rep PointInTimeRecoveryDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription

type Rep PointInTimeRecoveryDescription = D1 ('MetaData "PointInTimeRecoveryDescription" "Amazonka.DynamoDB.Types.PointInTimeRecoveryDescription" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "PointInTimeRecoveryDescription'" 'PrefixI 'True) (S1 ('MetaSel ('Just "earliestRestorableDateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "latestRestorableDateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "pointInTimeRecoveryStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PointInTimeRecoveryStatus)))))

newPointInTimeRecoveryDescription :: PointInTimeRecoveryDescription Source #

Create a value of PointInTimeRecoveryDescription with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:earliestRestorableDateTime:PointInTimeRecoveryDescription', pointInTimeRecoveryDescription_earliestRestorableDateTime - Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.

$sel:latestRestorableDateTime:PointInTimeRecoveryDescription', pointInTimeRecoveryDescription_latestRestorableDateTime - LatestRestorableDateTime is typically 5 minutes before the current time.

$sel:pointInTimeRecoveryStatus:PointInTimeRecoveryDescription', pointInTimeRecoveryDescription_pointInTimeRecoveryStatus - The current state of point in time recovery:

  • ENABLED - Point in time recovery is enabled.
  • DISABLED - Point in time recovery is disabled.

pointInTimeRecoveryDescription_earliestRestorableDateTime :: Lens' PointInTimeRecoveryDescription (Maybe UTCTime) Source #

Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.

pointInTimeRecoveryDescription_latestRestorableDateTime :: Lens' PointInTimeRecoveryDescription (Maybe UTCTime) Source #

LatestRestorableDateTime is typically 5 minutes before the current time.

pointInTimeRecoveryDescription_pointInTimeRecoveryStatus :: Lens' PointInTimeRecoveryDescription (Maybe PointInTimeRecoveryStatus) Source #

The current state of point in time recovery:

  • ENABLED - Point in time recovery is enabled.
  • DISABLED - Point in time recovery is disabled.