pub struct SourceTableFeatureDetails {
pub global_secondary_indexes: Option<Vec<GlobalSecondaryIndexInfo>>,
pub local_secondary_indexes: Option<Vec<LocalSecondaryIndexInfo>>,
pub sse_description: Option<SSEDescription>,
pub stream_description: Option<StreamSpecification>,
pub time_to_live_description: Option<TimeToLiveDescription>,
}
Expand description
Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.
Fields§
§global_secondary_indexes: Option<Vec<GlobalSecondaryIndexInfo>>
Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.
local_secondary_indexes: Option<Vec<LocalSecondaryIndexInfo>>
Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.
sse_description: Option<SSEDescription>
The description of the server-side encryption status on the table when the backup was created.
stream_description: Option<StreamSpecification>
Stream settings on the table when the backup was created.
time_to_live_description: Option<TimeToLiveDescription>
Time to Live settings on the table when the backup was created.
Trait Implementations§
Source§impl Clone for SourceTableFeatureDetails
impl Clone for SourceTableFeatureDetails
Source§fn clone(&self) -> SourceTableFeatureDetails
fn clone(&self) -> SourceTableFeatureDetails
Returns a copy 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 SourceTableFeatureDetails
impl Debug for SourceTableFeatureDetails
Source§impl Default for SourceTableFeatureDetails
impl Default for SourceTableFeatureDetails
Source§fn default() -> SourceTableFeatureDetails
fn default() -> SourceTableFeatureDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceTableFeatureDetails
impl<'de> Deserialize<'de> for SourceTableFeatureDetails
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
impl StructuralPartialEq for SourceTableFeatureDetails
Auto Trait Implementations§
impl Freeze for SourceTableFeatureDetails
impl RefUnwindSafe for SourceTableFeatureDetails
impl Send for SourceTableFeatureDetails
impl Sync for SourceTableFeatureDetails
impl Unpin for SourceTableFeatureDetails
impl UnwindSafe for SourceTableFeatureDetails
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