Struct aws_sdk_dynamodb::operation::list_backups::ListBackupsOutput
source · #[non_exhaustive]pub struct ListBackupsOutput {
pub backup_summaries: Option<Vec<BackupSummary>>,
pub last_evaluated_backup_arn: Option<String>,
/* private fields */
}
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.backup_summaries: Option<Vec<BackupSummary>>
List of BackupSummary
objects.
last_evaluated_backup_arn: Option<String>
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.
If LastEvaluatedBackupArn
is empty, then the last page of results has been processed and there are no more results to be retrieved.
If LastEvaluatedBackupArn
is not empty, this may or may not indicate that there is more data to be returned. All results are guaranteed to have been returned if and only if no value for LastEvaluatedBackupArn
is returned.
Implementations§
source§impl ListBackupsOutput
impl ListBackupsOutput
sourcepub fn backup_summaries(&self) -> &[BackupSummary]
pub fn backup_summaries(&self) -> &[BackupSummary]
List of BackupSummary
objects.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .backup_summaries.is_none()
.
sourcepub fn last_evaluated_backup_arn(&self) -> Option<&str>
pub fn last_evaluated_backup_arn(&self) -> Option<&str>
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.
If LastEvaluatedBackupArn
is empty, then the last page of results has been processed and there are no more results to be retrieved.
If LastEvaluatedBackupArn
is not empty, this may or may not indicate that there is more data to be returned. All results are guaranteed to have been returned if and only if no value for LastEvaluatedBackupArn
is returned.
source§impl ListBackupsOutput
impl ListBackupsOutput
sourcepub fn builder() -> ListBackupsOutputBuilder
pub fn builder() -> ListBackupsOutputBuilder
Creates a new builder-style object to manufacture ListBackupsOutput
.
Trait Implementations§
source§impl Clone for ListBackupsOutput
impl Clone for ListBackupsOutput
source§fn clone(&self) -> ListBackupsOutput
fn clone(&self) -> ListBackupsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListBackupsOutput
impl Debug for ListBackupsOutput
source§impl PartialEq for ListBackupsOutput
impl PartialEq for ListBackupsOutput
source§fn eq(&self, other: &ListBackupsOutput) -> bool
fn eq(&self, other: &ListBackupsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListBackupsOutput
impl RequestId for ListBackupsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListBackupsOutput
Auto Trait Implementations§
impl Freeze for ListBackupsOutput
impl RefUnwindSafe for ListBackupsOutput
impl Send for ListBackupsOutput
impl Sync for ListBackupsOutput
impl Unpin for ListBackupsOutput
impl UnwindSafe for ListBackupsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more