List backups associated with an AWS account. To list backups for a given
table, specify TableName
. ListBackups
returns a paginated list of
results with at most 1 MB worth of items in a page. You can also specify
a limit for the maximum number of entries to be returned in a page.
dynamodb_list_backups(TableName, Limit, TimeRangeLowerBound,
TimeRangeUpperBound, ExclusiveStartBackupArn, BackupType)
The backups from the table specified by TableName
are listed.
Maximum number of backups to return at once.
Only backups created after this time are listed. TimeRangeLowerBound
is inclusive.
Only backups created before this time are listed. TimeRangeUpperBound
is exclusive.
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 the
ExclusiveStartBackupArn
of a new ListBackups
operation in order to
fetch the next page of results.
The backups from the table specified by BackupType
are listed.
Where BackupType
can be:
USER
- On-demand backup created by you.
SYSTEM
- On-demand backup automatically created by DynamoDB.
ALL
- All types of on-demand backups (USER and SYSTEM).
svc$list_backups( TableName = "string", Limit = 123, TimeRangeLowerBound = as.POSIXct( "2015-01-01" ), TimeRangeUpperBound = as.POSIXct( "2015-01-01" ), ExclusiveStartBackupArn = "string", BackupType = "USER"|"SYSTEM"|"AWS_BACKUP"|"ALL" )
In the request, start time is inclusive, but end time is exclusive. Note that these limits are for the time at which the original backup was requested.
You can call ListBackups
a maximum of five times per second.