pub struct ReplicaGlobalSecondaryIndex {
pub index_name: String,
pub provisioned_throughput_override: Option<ProvisionedThroughputOverride>,
}
Expand description
Represents the properties of a replica global secondary index.
Fields§
§index_name: String
The name of the global secondary index.
provisioned_throughput_override: Option<ProvisionedThroughputOverride>
Replica table GSI-specific provisioned throughput. If not specified, uses the source table GSI's read capacity settings.
Trait Implementations§
Source§impl Clone for ReplicaGlobalSecondaryIndex
impl Clone for ReplicaGlobalSecondaryIndex
Source§fn clone(&self) -> ReplicaGlobalSecondaryIndex
fn clone(&self) -> ReplicaGlobalSecondaryIndex
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 Debug for ReplicaGlobalSecondaryIndex
impl Debug for ReplicaGlobalSecondaryIndex
Source§impl Default for ReplicaGlobalSecondaryIndex
impl Default for ReplicaGlobalSecondaryIndex
Source§fn default() -> ReplicaGlobalSecondaryIndex
fn default() -> ReplicaGlobalSecondaryIndex
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ReplicaGlobalSecondaryIndex
Auto Trait Implementations§
impl Freeze for ReplicaGlobalSecondaryIndex
impl RefUnwindSafe for ReplicaGlobalSecondaryIndex
impl Send for ReplicaGlobalSecondaryIndex
impl Sync for ReplicaGlobalSecondaryIndex
impl Unpin for ReplicaGlobalSecondaryIndex
impl UnwindSafe for ReplicaGlobalSecondaryIndex
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