AWSDynamoDBBackupDetails
Objective-C
@interface AWSDynamoDBBackupDetails
Swift
class AWSDynamoDBBackupDetails
Contains the details of the backup created for the table.
Required parameters: [BackupArn, BackupName, BackupStatus, BackupType, BackupCreationDateTime]
-
ARN associated with the backup.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable backupArn;
Swift
var backupArn: String? { get set }
-
Time at which the backup was created. This is the request time of the backup.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable backupCreationDateTime;
Swift
var backupCreationDateTime: Date? { get set }
-
Time at which the automatic on-demand backup created by DynamoDB will expire. This
SYSTEM
on-demand backup expires automatically 35 days after its creation.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable backupExpiryDateTime;
Swift
var backupExpiryDateTime: Date? { get set }
-
Name of the requested backup.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable backupName;
Swift
var backupName: String? { get set }
-
Size of the backup in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable backupSizeBytes;
Swift
var backupSizeBytes: NSNumber? { get set }
-
Backup can be in one of the following states: CREATING, ACTIVE, DELETED.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBBackupStatus backupStatus;
Swift
var backupStatus: AWSDynamoDBBackupStatus { get set }
-
BackupType:
USER
- You create and manage these using the on-demand backup feature.SYSTEM
- If you delete a table with point-in-time recovery enabled, aSYSTEM
backup is automatically created and is retained for 35 days (at no additional cost). System backups allow you to restore the deleted table to the state it was in just before the point of deletion.AWS_BACKUP
- On-demand backup created by you from Backup service.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBBackupType backupType;
Swift
var backupType: AWSDynamoDBBackupType { get set }