Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsDynamoDbTableLocalSecondaryIndex

import type { AwsDynamoDbTableLocalSecondaryIndex } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Information about a local secondary index for a DynamoDB table.

interface AwsDynamoDbTableLocalSecondaryIndex {
IndexArn?: string | null;
IndexName?: string | null;
KeySchema?: AwsDynamoDbTableKeySchema[] | null;
Projection?: AwsDynamoDbTableProjection | null;
}

§Properties

§
IndexArn?: string | null
[src]

The ARN of the index.

§
IndexName?: string | null
[src]

The name of the index.

§
KeySchema?: AwsDynamoDbTableKeySchema[] | null
[src]

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.