AWSDynamoDBArchivalSummary

Objective-C

@interface AWSDynamoDBArchivalSummary

Swift

class AWSDynamoDBArchivalSummary

Contains details of a table archival operation.

  • The Amazon Resource Name (ARN) of the backup the table was archived to, when applicable in the archival reason. If you wish to restore this backup to the same table name, you will need to delete the original table.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable archivalBackupArn;

    Swift

    var archivalBackupArn: String? { get set }
  • The date and time when table archival was initiated by DynamoDB, in UNIX epoch time format.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable archivalDateTime;

    Swift

    var archivalDateTime: Date? { get set }
  • The reason DynamoDB archived the table. Currently, the only possible value is:

    • INACCESSIBLE_ENCRYPTION_CREDENTIALS - The table was archived due to the table’s KMS key being inaccessible for more than seven days. An On-Demand backup was created at the archival time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable archivalReason;

    Swift

    var archivalReason: String? { get set }