pub struct BackupDescription {Show 14 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>>,
}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.
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 moreAuto 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