[][src]Struct rusoto_securityhub::AwsDynamoDbTableLocalSecondaryIndex

pub struct AwsDynamoDbTableLocalSecondaryIndex {
    pub index_arn: Option<String>,
    pub index_name: Option<String>,
    pub key_schema: Option<Vec<AwsDynamoDbTableKeySchema>>,
    pub projection: Option<AwsDynamoDbTableProjection>,
}

Information about a local secondary index for a DynamoDB table.

Fields

index_arn: Option<String>

The ARN of the index.

index_name: Option<String>

The name of the index.

key_schema: Option<Vec<AwsDynamoDbTableKeySchema>>

The complete key schema for the index.

projection: 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.

Trait Implementations

impl Clone for AwsDynamoDbTableLocalSecondaryIndex[src]

impl Debug for AwsDynamoDbTableLocalSecondaryIndex[src]

impl Default for AwsDynamoDbTableLocalSecondaryIndex[src]

impl<'de> Deserialize<'de> for AwsDynamoDbTableLocalSecondaryIndex[src]

impl PartialEq<AwsDynamoDbTableLocalSecondaryIndex> for AwsDynamoDbTableLocalSecondaryIndex[src]

impl Serialize for AwsDynamoDbTableLocalSecondaryIndex[src]

impl StructuralPartialEq for AwsDynamoDbTableLocalSecondaryIndex[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.