pub struct GlobalSecondaryIndexAutoScalingUpdate {
pub index_name: Option<String>,
pub provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>,
}
Expand description
Represents the auto scaling settings of a global secondary index for a global table that will be modified.
Fields§
§index_name: Option<String>
The name of the global secondary index.
provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>
Trait Implementations§
Source§impl Clone for GlobalSecondaryIndexAutoScalingUpdate
impl Clone for GlobalSecondaryIndexAutoScalingUpdate
Source§fn clone(&self) -> GlobalSecondaryIndexAutoScalingUpdate
fn clone(&self) -> GlobalSecondaryIndexAutoScalingUpdate
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 GlobalSecondaryIndexAutoScalingUpdate
impl Default for GlobalSecondaryIndexAutoScalingUpdate
Source§fn default() -> GlobalSecondaryIndexAutoScalingUpdate
fn default() -> GlobalSecondaryIndexAutoScalingUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for GlobalSecondaryIndexAutoScalingUpdate
impl PartialEq for GlobalSecondaryIndexAutoScalingUpdate
Source§fn eq(&self, other: &GlobalSecondaryIndexAutoScalingUpdate) -> bool
fn eq(&self, other: &GlobalSecondaryIndexAutoScalingUpdate) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GlobalSecondaryIndexAutoScalingUpdate
Auto Trait Implementations§
impl Freeze for GlobalSecondaryIndexAutoScalingUpdate
impl RefUnwindSafe for GlobalSecondaryIndexAutoScalingUpdate
impl Send for GlobalSecondaryIndexAutoScalingUpdate
impl Sync for GlobalSecondaryIndexAutoScalingUpdate
impl Unpin for GlobalSecondaryIndexAutoScalingUpdate
impl UnwindSafe for GlobalSecondaryIndexAutoScalingUpdate
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