#[non_exhaustive]pub struct AwsDynamoDbTableRestoreSummary {
pub source_backup_arn: Option<String>,
pub source_table_arn: Option<String>,
pub restore_date_time: Option<String>,
pub restore_in_progress: bool,
}
Expand description
Information about the restore for the table.
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.source_backup_arn: Option<String>
The ARN of the source backup from which the table was restored.
source_table_arn: Option<String>
The ARN of the source table for the backup.
restore_date_time: Option<String>
Indicates the point in time that the table was restored to.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
restore_in_progress: bool
Whether a restore is currently in progress.
Implementations
sourceimpl AwsDynamoDbTableRestoreSummary
impl AwsDynamoDbTableRestoreSummary
sourcepub fn source_backup_arn(&self) -> Option<&str>
pub fn source_backup_arn(&self) -> Option<&str>
The ARN of the source backup from which the table was restored.
sourcepub fn source_table_arn(&self) -> Option<&str>
pub fn source_table_arn(&self) -> Option<&str>
The ARN of the source table for the backup.
sourcepub fn restore_date_time(&self) -> Option<&str>
pub fn restore_date_time(&self) -> Option<&str>
Indicates the point in time that the table was restored to.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn restore_in_progress(&self) -> bool
pub fn restore_in_progress(&self) -> bool
Whether a restore is currently in progress.
sourceimpl AwsDynamoDbTableRestoreSummary
impl AwsDynamoDbTableRestoreSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsDynamoDbTableRestoreSummary
Trait Implementations
sourceimpl Clone for AwsDynamoDbTableRestoreSummary
impl Clone for AwsDynamoDbTableRestoreSummary
sourcefn clone(&self) -> AwsDynamoDbTableRestoreSummary
fn clone(&self) -> AwsDynamoDbTableRestoreSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AwsDynamoDbTableRestoreSummary> for AwsDynamoDbTableRestoreSummary
impl PartialEq<AwsDynamoDbTableRestoreSummary> for AwsDynamoDbTableRestoreSummary
sourcefn eq(&self, other: &AwsDynamoDbTableRestoreSummary) -> bool
fn eq(&self, other: &AwsDynamoDbTableRestoreSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsDynamoDbTableRestoreSummary) -> bool
fn ne(&self, other: &AwsDynamoDbTableRestoreSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsDynamoDbTableRestoreSummary
Auto Trait Implementations
impl RefUnwindSafe for AwsDynamoDbTableRestoreSummary
impl Send for AwsDynamoDbTableRestoreSummary
impl Sync for AwsDynamoDbTableRestoreSummary
impl Unpin for AwsDynamoDbTableRestoreSummary
impl UnwindSafe for AwsDynamoDbTableRestoreSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more