pub struct UpdateGlobalSecondaryIndexAction {
pub index_name: String,
pub provisioned_throughput: ProvisionedThroughput,
}
Expand description
Represents the new provisioned throughput settings to be applied to a global secondary index.
Fields§
§index_name: String
The name of the global secondary index to be updated.
provisioned_throughput: ProvisionedThroughput
Represents the provisioned throughput settings for the specified global secondary index.
For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
Trait Implementations§
Source§impl Clone for UpdateGlobalSecondaryIndexAction
impl Clone for UpdateGlobalSecondaryIndexAction
Source§fn clone(&self) -> UpdateGlobalSecondaryIndexAction
fn clone(&self) -> UpdateGlobalSecondaryIndexAction
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 UpdateGlobalSecondaryIndexAction
impl Default for UpdateGlobalSecondaryIndexAction
Source§fn default() -> UpdateGlobalSecondaryIndexAction
fn default() -> UpdateGlobalSecondaryIndexAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateGlobalSecondaryIndexAction
impl PartialEq for UpdateGlobalSecondaryIndexAction
Source§fn eq(&self, other: &UpdateGlobalSecondaryIndexAction) -> bool
fn eq(&self, other: &UpdateGlobalSecondaryIndexAction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateGlobalSecondaryIndexAction
Auto Trait Implementations§
impl Freeze for UpdateGlobalSecondaryIndexAction
impl RefUnwindSafe for UpdateGlobalSecondaryIndexAction
impl Send for UpdateGlobalSecondaryIndexAction
impl Sync for UpdateGlobalSecondaryIndexAction
impl Unpin for UpdateGlobalSecondaryIndexAction
impl UnwindSafe for UpdateGlobalSecondaryIndexAction
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