libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DynamoDB.Types.RestoreSummary

Description

 
Synopsis

Documentation

data RestoreSummary Source #

Contains details for the restore.

See: newRestoreSummary smart constructor.

Constructors

RestoreSummary' 

Fields

Instances

Instances details
Eq RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

Read RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

Show RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

Generic RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

Associated Types

type Rep RestoreSummary :: Type -> Type #

NFData RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

Methods

rnf :: RestoreSummary -> () #

Hashable RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

FromJSON RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

type Rep RestoreSummary Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.RestoreSummary

type Rep RestoreSummary = D1 ('MetaData "RestoreSummary" "Amazonka.DynamoDB.Types.RestoreSummary" "libZSservicesZSamazonka-dynamodbZSamazonka-dynamodb" 'False) (C1 ('MetaCons "RestoreSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceTableArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourceBackupArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "restoreDateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "restoreInProgress") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))))

newRestoreSummary Source #

Create a value of RestoreSummary 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:sourceTableArn:RestoreSummary', restoreSummary_sourceTableArn - The ARN of the source table of the backup that is being restored.

$sel:sourceBackupArn:RestoreSummary', restoreSummary_sourceBackupArn - The Amazon Resource Name (ARN) of the backup from which the table was restored.

$sel:restoreDateTime:RestoreSummary', restoreSummary_restoreDateTime - Point in time or source backup time.

$sel:restoreInProgress:RestoreSummary', restoreSummary_restoreInProgress - Indicates if a restore is in progress or not.

restoreSummary_sourceTableArn :: Lens' RestoreSummary (Maybe Text) Source #

The ARN of the source table of the backup that is being restored.

restoreSummary_sourceBackupArn :: Lens' RestoreSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the backup from which the table was restored.

restoreSummary_restoreDateTime :: Lens' RestoreSummary UTCTime Source #

Point in time or source backup time.

restoreSummary_restoreInProgress :: Lens' RestoreSummary Bool Source #

Indicates if a restore is in progress or not.