Class ListBackupsRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Container for the parameters to the ListBackups operation. List backups associated with an Amazon Web Services 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
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
ListBackups
a maximum of five times per second.
public class ListBackupsRequest : AmazonDynamoDBRequest
- Inheritance
-
ListBackupsRequest
Constructors
ListBackupsRequest()
public ListBackupsRequest()
Properties
BackupType
Gets and sets the property BackupType.
The backups from the table specified by
BackupType
are listed.
Where
BackupType
can be:
- On-demand backup created by you. (The default setting if no other backup types are specified.)USER
- On-demand backup automatically created by DynamoDB.SYSTEM
- All types of on-demand backups (USER and SYSTEM).ALL
public BackupTypeFilter BackupType { get; set; }
Property Value
ExclusiveStartBackupArn
Gets and sets the property 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 ListBackups
operation in order to fetch the next page of results.
public string ExclusiveStartBackupArn { get; set; }
Property Value
Limit
Gets and sets the property Limit.
Maximum number of backups to return at once.
public int Limit { get; set; }
Property Value
TableName
Gets and sets the property TableName.
The backups from the table specified by
TableName
are listed.
public string TableName { get; set; }
Property Value
TimeRangeLowerBound
Gets and sets the property TimeRangeLowerBound.
Only backups created after this time are listed.
TimeRangeLowerBound
is inclusive.
public DateTime TimeRangeLowerBound { get; set; }
Property Value
TimeRangeUpperBound
Gets and sets the property TimeRangeUpperBound.
Only backups created before this time are listed.
TimeRangeUpperBound
is exclusive.
public DateTime TimeRangeUpperBound { get; set; }