#[non_exhaustive]pub struct AwsDynamoDbTableLocalSecondaryIndex { /* private fields */ }
Expand description
Information about a local secondary index for a DynamoDB table.
Implementations§
source§impl AwsDynamoDbTableLocalSecondaryIndex
impl AwsDynamoDbTableLocalSecondaryIndex
sourcepub fn index_name(&self) -> Option<&str>
pub fn index_name(&self) -> Option<&str>
The name of the index.
sourcepub fn key_schema(&self) -> Option<&[AwsDynamoDbTableKeySchema]>
pub fn key_schema(&self) -> Option<&[AwsDynamoDbTableKeySchema]>
The complete key schema for the index.
sourcepub fn projection(&self) -> Option<&AwsDynamoDbTableProjection>
pub fn projection(&self) -> Option<&AwsDynamoDbTableProjection>
Attributes that are copied from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
source§impl AwsDynamoDbTableLocalSecondaryIndex
impl AwsDynamoDbTableLocalSecondaryIndex
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsDynamoDbTableLocalSecondaryIndex
.
Trait Implementations§
source§impl Clone for AwsDynamoDbTableLocalSecondaryIndex
impl Clone for AwsDynamoDbTableLocalSecondaryIndex
source§fn clone(&self) -> AwsDynamoDbTableLocalSecondaryIndex
fn clone(&self) -> AwsDynamoDbTableLocalSecondaryIndex
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 PartialEq<AwsDynamoDbTableLocalSecondaryIndex> for AwsDynamoDbTableLocalSecondaryIndex
impl PartialEq<AwsDynamoDbTableLocalSecondaryIndex> for AwsDynamoDbTableLocalSecondaryIndex
source§fn eq(&self, other: &AwsDynamoDbTableLocalSecondaryIndex) -> bool
fn eq(&self, other: &AwsDynamoDbTableLocalSecondaryIndex) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.