AWSDynamoDBListBackupsInput
Objective-C
@interface AWSDynamoDBListBackupsInput
Swift
class AWSDynamoDBListBackupsInput
-
The backups from the table specified by
BackupType
are listed.Where
BackupType
can be:USER
- On-demand backup created by you. (The default setting if no other backup types are specified.)SYSTEM
- On-demand backup automatically created by DynamoDB.ALL
- All types of on-demand backups (USER and SYSTEM).
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBBackupTypeFilter backupType;
Swift
var backupType: AWSDynamoDBBackupTypeFilter { get set }
-
LastEvaluatedBackupArn
is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as theExclusiveStartBackupArn
of a newListBackups
operation in order to fetch the next page of results.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable exclusiveStartBackupArn;
Swift
var exclusiveStartBackupArn: String? { get set }
-
Maximum number of backups to return at once.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable limit;
Swift
var limit: NSNumber? { get set }
-
Lists the backups from the table specified in
TableName
. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable tableName;
Swift
var tableName: String? { get set }
-
Only backups created after this time are listed.
TimeRangeLowerBound
is inclusive.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable timeRangeLowerBound;
Swift
var timeRangeLowerBound: Date? { get set }
-
Only backups created before this time are listed.
TimeRangeUpperBound
is exclusive.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable timeRangeUpperBound;
Swift
var timeRangeUpperBound: Date? { get set }