[−][src]Struct rusoto_dynamodb::ListBackupsInput
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 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
impl PartialEq<ListBackupsInput> for ListBackupsInput
[src]
fn eq(&self, other: &ListBackupsInput) -> bool
[src]
fn ne(&self, other: &ListBackupsInput) -> bool
[src]
impl Default for ListBackupsInput
[src]
fn default() -> ListBackupsInput
[src]
impl Clone for ListBackupsInput
[src]
fn clone(&self) -> ListBackupsInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ListBackupsInput
[src]
impl Serialize for ListBackupsInput
[src]
Auto Trait Implementations
impl Send for ListBackupsInput
impl Sync for ListBackupsInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self