AWSDynamoDBBackupSummary

Objective-C

@interface AWSDynamoDBBackupSummary

Swift

class AWSDynamoDBBackupSummary

Contains details for the backup.

  • 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.

    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 specified backup.

    Declaration

    Objective-C

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

    Swift

    var backupName: String? { get set }
  • Size of the backup in bytes.

    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, a SYSTEM 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 }
  • ARN associated with the table.

    Declaration

    Objective-C

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

    Swift

    var tableArn: String? { get set }
  • Unique identifier for the table.

    Declaration

    Objective-C

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

    Swift

    var tableId: String? { get set }
  • Name of the table.

    Declaration

    Objective-C

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

    Swift

    var tableName: String? { get set }