pub struct ListBackupsInput {
pub backup_type: Option<String>,
pub exclusive_start_backup_arn: Option<String>,
pub limit: Option<i64>,
pub table_name: Option<String>,
pub time_range_lower_bound: Option<f64>,
pub time_range_upper_bound: Option<f64>,
}
Fields§
§backup_type: Option<String>
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).
exclusive_start_backup_arn: Option<String>
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.
limit: Option<i64>
Maximum number of backups to return at once.
table_name: Option<String>
The backups from the table specified by TableName
are listed.
time_range_lower_bound: Option<f64>
Only backups created after this time are listed. TimeRangeLowerBound
is inclusive.
time_range_upper_bound: Option<f64>
Only backups created before this time are listed. TimeRangeUpperBound
is exclusive.
Trait Implementations§
Source§impl Clone for ListBackupsInput
impl Clone for ListBackupsInput
Source§fn clone(&self) -> ListBackupsInput
fn clone(&self) -> ListBackupsInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more