pub struct ReplicaGlobalSecondaryIndexDescription {
pub index_name: Option<String>,
pub provisioned_throughput_override: Option<ProvisionedThroughputOverride>,
}
Expand description
Represents the properties of a replica global secondary index.
Fields§
§index_name: Option<String>
The name of the global secondary index.
provisioned_throughput_override: Option<ProvisionedThroughputOverride>
If not described, uses the source table GSI's read capacity settings.
Trait Implementations§
Source§impl Clone for ReplicaGlobalSecondaryIndexDescription
impl Clone for ReplicaGlobalSecondaryIndexDescription
Source§fn clone(&self) -> ReplicaGlobalSecondaryIndexDescription
fn clone(&self) -> ReplicaGlobalSecondaryIndexDescription
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 ReplicaGlobalSecondaryIndexDescription
impl Default for ReplicaGlobalSecondaryIndexDescription
Source§fn default() -> ReplicaGlobalSecondaryIndexDescription
fn default() -> ReplicaGlobalSecondaryIndexDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplicaGlobalSecondaryIndexDescription
impl<'de> Deserialize<'de> for ReplicaGlobalSecondaryIndexDescription
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 ReplicaGlobalSecondaryIndexDescription
impl PartialEq for ReplicaGlobalSecondaryIndexDescription
Source§fn eq(&self, other: &ReplicaGlobalSecondaryIndexDescription) -> bool
fn eq(&self, other: &ReplicaGlobalSecondaryIndexDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReplicaGlobalSecondaryIndexDescription
Auto Trait Implementations§
impl Freeze for ReplicaGlobalSecondaryIndexDescription
impl RefUnwindSafe for ReplicaGlobalSecondaryIndexDescription
impl Send for ReplicaGlobalSecondaryIndexDescription
impl Sync for ReplicaGlobalSecondaryIndexDescription
impl Unpin for ReplicaGlobalSecondaryIndexDescription
impl UnwindSafe for ReplicaGlobalSecondaryIndexDescription
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