pub struct CreateGlobalSecondaryIndexAction {
pub index_name: String,
pub key_schema: Vec<KeySchemaElement>,
pub projection: Projection,
pub provisioned_throughput: Option<ProvisionedThroughput>,
}
Expand description
Represents a new global secondary index to be added to an existing table.
Fields§
§index_name: String
The name of the global secondary index to be created.
key_schema: Vec<KeySchemaElement>
The key schema for the global secondary index.
projection: Projection
Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
provisioned_throughput: Option<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 CreateGlobalSecondaryIndexAction
impl Clone for CreateGlobalSecondaryIndexAction
Source§fn clone(&self) -> CreateGlobalSecondaryIndexAction
fn clone(&self) -> CreateGlobalSecondaryIndexAction
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 CreateGlobalSecondaryIndexAction
impl Default for CreateGlobalSecondaryIndexAction
Source§fn default() -> CreateGlobalSecondaryIndexAction
fn default() -> CreateGlobalSecondaryIndexAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateGlobalSecondaryIndexAction
impl PartialEq for CreateGlobalSecondaryIndexAction
Source§fn eq(&self, other: &CreateGlobalSecondaryIndexAction) -> bool
fn eq(&self, other: &CreateGlobalSecondaryIndexAction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateGlobalSecondaryIndexAction
Auto Trait Implementations§
impl Freeze for CreateGlobalSecondaryIndexAction
impl RefUnwindSafe for CreateGlobalSecondaryIndexAction
impl Send for CreateGlobalSecondaryIndexAction
impl Sync for CreateGlobalSecondaryIndexAction
impl Unpin for CreateGlobalSecondaryIndexAction
impl UnwindSafe for CreateGlobalSecondaryIndexAction
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