pub struct UpdateGlobalTableSettingsOutput {
pub global_table_name: Option<String>,
pub replica_settings: Option<Vec<ReplicaSettingsDescription>>,
}
Fields§
§global_table_name: Option<String>
The name of the global table.
replica_settings: Option<Vec<ReplicaSettingsDescription>>
The Region-specific settings for the global table.
Trait Implementations§
Source§impl Clone for UpdateGlobalTableSettingsOutput
impl Clone for UpdateGlobalTableSettingsOutput
Source§fn clone(&self) -> UpdateGlobalTableSettingsOutput
fn clone(&self) -> UpdateGlobalTableSettingsOutput
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 Default for UpdateGlobalTableSettingsOutput
impl Default for UpdateGlobalTableSettingsOutput
Source§fn default() -> UpdateGlobalTableSettingsOutput
fn default() -> UpdateGlobalTableSettingsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateGlobalTableSettingsOutput
impl<'de> Deserialize<'de> for UpdateGlobalTableSettingsOutput
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
Source§impl PartialEq for UpdateGlobalTableSettingsOutput
impl PartialEq for UpdateGlobalTableSettingsOutput
Source§fn eq(&self, other: &UpdateGlobalTableSettingsOutput) -> bool
fn eq(&self, other: &UpdateGlobalTableSettingsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateGlobalTableSettingsOutput
Auto Trait Implementations§
impl Freeze for UpdateGlobalTableSettingsOutput
impl RefUnwindSafe for UpdateGlobalTableSettingsOutput
impl Send for UpdateGlobalTableSettingsOutput
impl Sync for UpdateGlobalTableSettingsOutput
impl Unpin for UpdateGlobalTableSettingsOutput
impl UnwindSafe for UpdateGlobalTableSettingsOutput
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