Struct aws_sdk_securityhub::model::AwsDynamoDbTableLocalSecondaryIndex [−][src]
#[non_exhaustive]pub struct AwsDynamoDbTableLocalSecondaryIndex {
pub index_arn: Option<String>,
pub index_name: Option<String>,
pub key_schema: Option<Vec<AwsDynamoDbTableKeySchema>>,
pub projection: Option<AwsDynamoDbTableProjection>,
}
Expand description
Information about a local secondary index for a DynamoDB table.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
Implementations
The name of the index.
The complete key schema for the index.
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.
Creates a new builder-style object to manufacture AwsDynamoDbTableLocalSecondaryIndex
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for AwsDynamoDbTableLocalSecondaryIndex
impl Sync for AwsDynamoDbTableLocalSecondaryIndex
impl Unpin for AwsDynamoDbTableLocalSecondaryIndex
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more