dynamodb_list_backups: List backups associated with an Amazon Web Services account

View source: R/dynamodb_operations.R

dynamodb_list_backupsR Documentation

List backups associated with an Amazon Web Services account

Description

List backups associated with an Amazon Web Services account. To list 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.

See https://www.paws-r-sdk.com/docs/dynamodb_list_backups/ for full documentation.

Usage

dynamodb_list_backups(
  TableName = NULL,
  Limit = NULL,
  TimeRangeLowerBound = NULL,
  TimeRangeUpperBound = NULL,
  ExclusiveStartBackupArn = NULL,
  BackupType = NULL
)

Arguments

TableName

The backups from the table specified by TableName are listed.

Limit

Maximum number of backups to return at once.

TimeRangeLowerBound

Only backups created after this time are listed. TimeRangeLowerBound is inclusive.

TimeRangeUpperBound

Only backups created before this time are listed. TimeRangeUpperBound is exclusive.

ExclusiveStartBackupArn

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 list_backups operation in order to fetch the next page of results.

BackupType

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


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.