pub struct BackupDescription {Show 23 fields
pub backup_arn: String,
pub backup_name: String,
pub table_name: String,
pub table_arn: String,
pub backup_status: String,
pub backup_type: String,
pub backup_creation_date: DateTime<Utc>,
pub key_schema: Vec<KeySchemaElement>,
pub attribute_definitions: Vec<AttributeDefinition>,
pub provisioned_throughput: ProvisionedThroughput,
pub billing_mode: String,
pub item_count: i64,
pub size_bytes: i64,
pub items: Vec<HashMap<String, AttributeValue>>,
pub gsi: Vec<GlobalSecondaryIndex>,
pub lsi: Vec<LocalSecondaryIndex>,
pub tags: BTreeMap<String, String>,
pub ttl_attribute: Option<String>,
pub ttl_enabled: bool,
pub sse_type: Option<String>,
pub sse_kms_key_arn: Option<String>,
pub stream_enabled: bool,
pub stream_view_type: Option<String>,
}Fields§
§backup_arn: String§backup_name: String§table_name: String§table_arn: String§backup_status: String§backup_type: String§backup_creation_date: DateTime<Utc>§key_schema: Vec<KeySchemaElement>§attribute_definitions: Vec<AttributeDefinition>§provisioned_throughput: ProvisionedThroughput§billing_mode: String§item_count: i64§size_bytes: i64§items: Vec<HashMap<String, AttributeValue>>Snapshot of the table items at backup creation time.
gsi: Vec<GlobalSecondaryIndex>Real DDB persists GSI/LSI/tags/TTL/SSE/Stream into the backup payload so RestoreTableFromBackup brings the full table back up. Older snapshots may not have these fields, so all default to empty/false via serde.
lsi: Vec<LocalSecondaryIndex>§ttl_attribute: Option<String>§ttl_enabled: bool§sse_type: Option<String>§sse_kms_key_arn: Option<String>§stream_enabled: bool§stream_view_type: Option<String>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 (const: unstable) · 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<'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
Auto Trait Implementations§
impl Freeze for BackupDescription
impl RefUnwindSafe for BackupDescription
impl Send for BackupDescription
impl Sync for BackupDescription
impl Unpin for BackupDescription
impl UnsafeUnpin 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