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

SourceTableFeatureDetails

import type { SourceTableFeatureDetails } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";

Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.

interface SourceTableFeatureDetails {
GlobalSecondaryIndexes?: GlobalSecondaryIndexInfo[] | null;
LocalSecondaryIndexes?: LocalSecondaryIndexInfo[] | null;
SSEDescription?: SSEDescription | null;
StreamDescription?: StreamSpecification | null;
TimeToLiveDescription?: TimeToLiveDescription | null;
}

§Properties

§
GlobalSecondaryIndexes?: GlobalSecondaryIndexInfo[] | null
[src]

Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.

§
LocalSecondaryIndexes?: LocalSecondaryIndexInfo[] | null
[src]

Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.

§
SSEDescription?: SSEDescription | null
[src]

The description of the server-side encryption status on the table when the backup was created.

§
StreamDescription?: StreamSpecification | null
[src]

Stream settings on the table when the backup was created.

§
TimeToLiveDescription?: TimeToLiveDescription | null
[src]

Time to Live settings on the table when the backup was created.