Struct rusoto_dynamodb::ListBackupsInput[][src]

pub struct ListBackupsInput {
    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

LastEvaluatedBackupARN returned by the previous ListBackups call.

Maximum number of backups to return at once.

The backups from the table specified by TableName are listed.

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

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

Trait Implementations

impl Default for ListBackupsInput
[src]

Returns the "default value" for a type. Read more

impl Debug for ListBackupsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListBackupsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListBackupsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations