Skip to content

DynamoDB  >  Structures  >  SourceTableFeatureDetails

SourceTableFeatureDetails

Structure Class

SourceTableFeatureDetails dataclass

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

Attributes

global_secondary_indexes class-attribute instance-attribute
global_secondary_indexes: list[GlobalSecondaryIndexInfo] | None = None

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.

local_secondary_indexes class-attribute instance-attribute
local_secondary_indexes: list[LocalSecondaryIndexInfo] | None = None

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.

sse_description class-attribute instance-attribute
sse_description: SSEDescription | None = None

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

stream_description class-attribute instance-attribute
stream_description: StreamSpecification | None = None

Stream settings on the table when the backup was created.

time_to_live_description class-attribute instance-attribute
time_to_live_description: TimeToLiveDescription | None = None

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

vector_indexes class-attribute instance-attribute
vector_indexes: list[VectorIndexInfo] | None = None

The vector index properties for the table at the time the backup was created, including the index name, vector attribute, dimensions, distance function, search schema, and projection.