List Backups
| dynamodb_list_backups | R Documentation |
List DynamoDB backups that are associated with an Amazon Web Services account and weren't made with Amazon Web Services Backup¶
Description¶
List DynamoDB backups that are associated with an Amazon Web Services
account and weren't made with Amazon Web Services Backup. To list these
backups for a given table, specify TableName. list_backups returns a
paginated list of results with at most 1 MB worth of items in a page.
You can also specify a maximum number of entries to be returned in a
page.
In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested.
You can call list_backups a maximum of five times per second.
If you want to retrieve the complete list of backups made with Amazon Web Services Backup, use the Amazon Web Services Backup list API.
Usage¶
dynamodb_list_backups(TableName, Limit, TimeRangeLowerBound,
TimeRangeUpperBound, ExclusiveStartBackupArn, BackupType)
Arguments¶
TableNameLists the backups from the table specified in
TableName. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.LimitMaximum number of backups to return at once.
TimeRangeLowerBoundOnly backups created after this time are listed.
TimeRangeLowerBoundis inclusive.TimeRangeUpperBoundOnly backups created before this time are listed.
TimeRangeUpperBoundis exclusive.ExclusiveStartBackupArnLastEvaluatedBackupArnis 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 theExclusiveStartBackupArnof a newlist_backupsoperation in order to fetch the next page of results.BackupTypeThe backups from the table specified by
BackupTypeare listed.Where
BackupTypecan 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).
Value¶
A list with the following syntax:
list(
BackupSummaries = list(
list(
TableName = "string",
TableId = "string",
TableArn = "string",
BackupArn = "string",
BackupName = "string",
BackupCreationDateTime = as.POSIXct(
"2015-01-01"
),
BackupExpiryDateTime = as.POSIXct(
"2015-01-01"
),
BackupStatus = "CREATING"|"DELETED"|"AVAILABLE",
BackupType = "USER"|"SYSTEM"|"AWS_BACKUP",
BackupSizeBytes = 123
)
),
LastEvaluatedBackupArn = "string"
)