pub struct ListBackupsOutput {
pub backup_summaries: Option<Vec<BackupSummary>>,
pub last_evaluated_backup_arn: Option<String>,
}
Fields§
§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.
Trait Implementations§
Source§impl Clone for ListBackupsOutput
impl Clone for ListBackupsOutput
Source§fn clone(&self) -> ListBackupsOutput
fn clone(&self) -> ListBackupsOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListBackupsOutput
impl Debug for ListBackupsOutput
Source§impl Default for ListBackupsOutput
impl Default for ListBackupsOutput
Source§fn default() -> ListBackupsOutput
fn default() -> ListBackupsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBackupsOutput
impl<'de> Deserialize<'de> for ListBackupsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListBackupsOutput
impl PartialEq for ListBackupsOutput
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
Mutably borrows from an owned value. Read more