pub struct DynamoDbState {
pub account_id: String,
pub region: String,
pub tables: HashMap<String, DynamoTable>,
pub backups: HashMap<String, BackupDescription>,
pub global_tables: HashMap<String, GlobalTableDescription>,
pub exports: HashMap<String, ExportDescription>,
pub imports: HashMap<String, ImportDescription>,
}Fields§
§account_id: String§region: String§tables: HashMap<String, DynamoTable>§backups: HashMap<String, BackupDescription>§global_tables: HashMap<String, GlobalTableDescription>§exports: HashMap<String, ExportDescription>§imports: HashMap<String, ImportDescription>Implementations§
Auto Trait Implementations§
impl Freeze for DynamoDbState
impl RefUnwindSafe for DynamoDbState
impl Send for DynamoDbState
impl Sync for DynamoDbState
impl Unpin for DynamoDbState
impl UnsafeUnpin for DynamoDbState
impl UnwindSafe for DynamoDbState
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