pub struct GlobalTableGlobalSecondaryIndexSettingsUpdate {
pub index_name: String,
pub provisioned_write_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>,
pub provisioned_write_capacity_units: Option<i64>,
}
Expand description
Represents the settings of a global secondary index for a global table that will be modified.
Fields§
§index_name: String
The name of the global secondary index. The name must be unique among all other indexes on this table.
provisioned_write_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>
Auto scaling settings for managing a global secondary index's write capacity units.
provisioned_write_capacity_units: Option<i64>
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.
Trait Implementations§
Source§impl Clone for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl Clone for GlobalTableGlobalSecondaryIndexSettingsUpdate
Source§fn clone(&self) -> GlobalTableGlobalSecondaryIndexSettingsUpdate
fn clone(&self) -> GlobalTableGlobalSecondaryIndexSettingsUpdate
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 moreSource§impl Default for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl Default for GlobalTableGlobalSecondaryIndexSettingsUpdate
Source§fn default() -> GlobalTableGlobalSecondaryIndexSettingsUpdate
fn default() -> GlobalTableGlobalSecondaryIndexSettingsUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl PartialEq for GlobalTableGlobalSecondaryIndexSettingsUpdate
Source§fn eq(&self, other: &GlobalTableGlobalSecondaryIndexSettingsUpdate) -> bool
fn eq(&self, other: &GlobalTableGlobalSecondaryIndexSettingsUpdate) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GlobalTableGlobalSecondaryIndexSettingsUpdate
Auto Trait Implementations§
impl Freeze for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl RefUnwindSafe for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl Send for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl Sync for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl Unpin for GlobalTableGlobalSecondaryIndexSettingsUpdate
impl UnwindSafe for GlobalTableGlobalSecondaryIndexSettingsUpdate
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