pub struct UpdateGlobalTableInput {
pub global_table_name: String,
pub replica_updates: Vec<ReplicaUpdate>,
}
Fields§
§global_table_name: String
The global table name.
replica_updates: Vec<ReplicaUpdate>
A list of Regions that should be added or removed from the global table.
Trait Implementations§
Source§impl Clone for UpdateGlobalTableInput
impl Clone for UpdateGlobalTableInput
Source§fn clone(&self) -> UpdateGlobalTableInput
fn clone(&self) -> UpdateGlobalTableInput
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 UpdateGlobalTableInput
impl Debug for UpdateGlobalTableInput
Source§impl Default for UpdateGlobalTableInput
impl Default for UpdateGlobalTableInput
Source§fn default() -> UpdateGlobalTableInput
fn default() -> UpdateGlobalTableInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateGlobalTableInput
impl PartialEq for UpdateGlobalTableInput
Source§impl Serialize for UpdateGlobalTableInput
impl Serialize for UpdateGlobalTableInput
impl StructuralPartialEq for UpdateGlobalTableInput
Auto Trait Implementations§
impl Freeze for UpdateGlobalTableInput
impl RefUnwindSafe for UpdateGlobalTableInput
impl Send for UpdateGlobalTableInput
impl Sync for UpdateGlobalTableInput
impl Unpin for UpdateGlobalTableInput
impl UnwindSafe for UpdateGlobalTableInput
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