pub struct ListBackupVaultsOutput {
pub backup_vault_list: Option<Vec<BackupVaultListMember>>,
pub next_token: Option<String>,
}
Fields§
§backup_vault_list: Option<Vec<BackupVaultListMember>>
An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.
next_token: Option<String>
The next item following a partial list of returned items. For example, if a request is made to return maxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
Trait Implementations§
Source§impl Clone for ListBackupVaultsOutput
impl Clone for ListBackupVaultsOutput
Source§fn clone(&self) -> ListBackupVaultsOutput
fn clone(&self) -> ListBackupVaultsOutput
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 ListBackupVaultsOutput
impl Debug for ListBackupVaultsOutput
Source§impl Default for ListBackupVaultsOutput
impl Default for ListBackupVaultsOutput
Source§fn default() -> ListBackupVaultsOutput
fn default() -> ListBackupVaultsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBackupVaultsOutput
impl<'de> Deserialize<'de> for ListBackupVaultsOutput
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 ListBackupVaultsOutput
impl PartialEq for ListBackupVaultsOutput
impl StructuralPartialEq for ListBackupVaultsOutput
Auto Trait Implementations§
impl Freeze for ListBackupVaultsOutput
impl RefUnwindSafe for ListBackupVaultsOutput
impl Send for ListBackupVaultsOutput
impl Sync for ListBackupVaultsOutput
impl Unpin for ListBackupVaultsOutput
impl UnwindSafe for ListBackupVaultsOutput
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