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