pub struct RestoreSummary {
pub restore_date_time: f64,
pub restore_in_progress: bool,
pub source_backup_arn: Option<String>,
pub source_table_arn: Option<String>,
}
Expand description
Contains details for the restore.
Fields§
§restore_date_time: f64
Point in time or source backup time.
restore_in_progress: bool
Indicates if a restore is in progress or not.
source_backup_arn: Option<String>
The Amazon Resource Name (ARN) of the backup from which the table was restored.
source_table_arn: Option<String>
The ARN of the source table of the backup that is being restored.
Trait Implementations§
Source§impl Clone for RestoreSummary
impl Clone for RestoreSummary
Source§fn clone(&self) -> RestoreSummary
fn clone(&self) -> RestoreSummary
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 RestoreSummary
impl Debug for RestoreSummary
Source§impl Default for RestoreSummary
impl Default for RestoreSummary
Source§fn default() -> RestoreSummary
fn default() -> RestoreSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestoreSummary
impl<'de> Deserialize<'de> for RestoreSummary
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 RestoreSummary
impl PartialEq for RestoreSummary
impl StructuralPartialEq for RestoreSummary
Auto Trait Implementations§
impl Freeze for RestoreSummary
impl RefUnwindSafe for RestoreSummary
impl Send for RestoreSummary
impl Sync for RestoreSummary
impl Unpin for RestoreSummary
impl UnwindSafe for RestoreSummary
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