pub struct BackupDescription {
pub backup_details: Option<BackupDetails>,
pub source_table_details: Option<SourceTableDetails>,
pub source_table_feature_details: Option<SourceTableFeatureDetails>,
}
Expand description
Contains the description of the backup created for the table.
Fields§
§backup_details: Option<BackupDetails>
Contains the details of the backup created for the table.
source_table_details: Option<SourceTableDetails>
Contains the details of the table when the backup was created.
source_table_feature_details: Option<SourceTableFeatureDetails>
Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.
Trait Implementations§
Source§impl Clone for BackupDescription
impl Clone for BackupDescription
Source§fn clone(&self) -> BackupDescription
fn clone(&self) -> BackupDescription
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 BackupDescription
impl Debug for BackupDescription
Source§impl Default for BackupDescription
impl Default for BackupDescription
Source§fn default() -> BackupDescription
fn default() -> BackupDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupDescription
impl<'de> Deserialize<'de> for BackupDescription
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 BackupDescription
impl PartialEq for BackupDescription
impl StructuralPartialEq for BackupDescription
Auto Trait Implementations§
impl Freeze for BackupDescription
impl RefUnwindSafe for BackupDescription
impl Send for BackupDescription
impl Sync for BackupDescription
impl Unpin for BackupDescription
impl UnwindSafe for BackupDescription
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