pub struct ReplicaGlobalSecondaryIndexSettingsUpdate {
pub index_name: String,
pub provisioned_read_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>,
pub provisioned_read_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_read_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>
Auto scaling settings for managing a global secondary index replica's read capacity units.
provisioned_read_capacity_units: Option<i64>
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException
.
Trait Implementations§
Source§impl Clone for ReplicaGlobalSecondaryIndexSettingsUpdate
impl Clone for ReplicaGlobalSecondaryIndexSettingsUpdate
Source§fn clone(&self) -> ReplicaGlobalSecondaryIndexSettingsUpdate
fn clone(&self) -> ReplicaGlobalSecondaryIndexSettingsUpdate
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 ReplicaGlobalSecondaryIndexSettingsUpdate
impl Default for ReplicaGlobalSecondaryIndexSettingsUpdate
Source§fn default() -> ReplicaGlobalSecondaryIndexSettingsUpdate
fn default() -> ReplicaGlobalSecondaryIndexSettingsUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplicaGlobalSecondaryIndexSettingsUpdate
impl PartialEq for ReplicaGlobalSecondaryIndexSettingsUpdate
Source§fn eq(&self, other: &ReplicaGlobalSecondaryIndexSettingsUpdate) -> bool
fn eq(&self, other: &ReplicaGlobalSecondaryIndexSettingsUpdate) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReplicaGlobalSecondaryIndexSettingsUpdate
Auto Trait Implementations§
impl Freeze for ReplicaGlobalSecondaryIndexSettingsUpdate
impl RefUnwindSafe for ReplicaGlobalSecondaryIndexSettingsUpdate
impl Send for ReplicaGlobalSecondaryIndexSettingsUpdate
impl Sync for ReplicaGlobalSecondaryIndexSettingsUpdate
impl Unpin for ReplicaGlobalSecondaryIndexSettingsUpdate
impl UnwindSafe for ReplicaGlobalSecondaryIndexSettingsUpdate
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