[][src]Struct rusoto_dynamodb::ListBackupsInput

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 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]

impl Default for ListBackupsInput[src]

impl Clone for 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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self