Struct aws_sdk_dynamodb::input::ListBackupsInput
source · [−]#[non_exhaustive]pub struct ListBackupsInput {
pub table_name: Option<String>,
pub limit: Option<i32>,
pub time_range_lower_bound: Option<DateTime>,
pub time_range_upper_bound: Option<DateTime>,
pub exclusive_start_backup_arn: Option<String>,
pub backup_type: Option<BackupTypeFilter>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.table_name: Option<String>
The backups from the table specified by TableName
are listed.
limit: Option<i32>
Maximum number of backups to return at once.
time_range_lower_bound: Option<DateTime>
Only backups created after this time are listed. TimeRangeLowerBound
is inclusive.
time_range_upper_bound: Option<DateTime>
Only backups created before this time are listed. TimeRangeUpperBound
is exclusive.
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.
backup_type: Option<BackupTypeFilter>
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).
Implementations
sourceimpl ListBackupsInput
impl ListBackupsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBackups, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBackups, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListBackups
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListBackupsInput
sourceimpl ListBackupsInput
impl ListBackupsInput
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The backups from the table specified by TableName
are listed.
sourcepub fn time_range_lower_bound(&self) -> Option<&DateTime>
pub fn time_range_lower_bound(&self) -> Option<&DateTime>
Only backups created after this time are listed. TimeRangeLowerBound
is inclusive.
sourcepub fn time_range_upper_bound(&self) -> Option<&DateTime>
pub fn time_range_upper_bound(&self) -> Option<&DateTime>
Only backups created before this time are listed. TimeRangeUpperBound
is exclusive.
sourcepub fn exclusive_start_backup_arn(&self) -> Option<&str>
pub fn exclusive_start_backup_arn(&self) -> Option<&str>
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.
sourcepub fn backup_type(&self) -> Option<&BackupTypeFilter>
pub fn backup_type(&self) -> Option<&BackupTypeFilter>
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).
Trait Implementations
sourceimpl Clone for ListBackupsInput
impl Clone for ListBackupsInput
sourcefn clone(&self) -> ListBackupsInput
fn clone(&self) -> ListBackupsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ListBackupsInput
impl Debug for ListBackupsInput
sourceimpl PartialEq<ListBackupsInput> for ListBackupsInput
impl PartialEq<ListBackupsInput> for ListBackupsInput
sourcefn eq(&self, other: &ListBackupsInput) -> bool
fn eq(&self, other: &ListBackupsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListBackupsInput) -> bool
fn ne(&self, other: &ListBackupsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListBackupsInput
Auto Trait Implementations
impl RefUnwindSafe for ListBackupsInput
impl Send for ListBackupsInput
impl Sync for ListBackupsInput
impl Unpin for ListBackupsInput
impl UnwindSafe for ListBackupsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more