import { _LocalSecondaryIndexInfo, _UnmarshalledLocalSecondaryIndexInfo } from './_LocalSecondaryIndexInfo'; import { _GlobalSecondaryIndexInfo, _UnmarshalledGlobalSecondaryIndexInfo } from './_GlobalSecondaryIndexInfo'; import { _StreamSpecification, _UnmarshalledStreamSpecification } from './_StreamSpecification'; import { _TimeToLiveDescription, _UnmarshalledTimeToLiveDescription } from './_TimeToLiveDescription'; import { _SSEDescription, _UnmarshalledSSEDescription } from './_SSEDescription'; /** *

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

*/ export interface _SourceTableFeatureDetails { /** *

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.

*/ LocalSecondaryIndexes?: Array<_LocalSecondaryIndexInfo> | Iterable<_LocalSecondaryIndexInfo>; /** *

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.

*/ GlobalSecondaryIndexes?: Array<_GlobalSecondaryIndexInfo> | Iterable<_GlobalSecondaryIndexInfo>; /** *

Stream settings on the table when the backup was created.

*/ StreamDescription?: _StreamSpecification; /** *

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

*/ TimeToLiveDescription?: _TimeToLiveDescription; /** *

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

*/ SSEDescription?: _SSEDescription; } export interface _UnmarshalledSourceTableFeatureDetails extends _SourceTableFeatureDetails { /** *

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.

*/ LocalSecondaryIndexes?: Array<_UnmarshalledLocalSecondaryIndexInfo>; /** *

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.

*/ GlobalSecondaryIndexes?: Array<_UnmarshalledGlobalSecondaryIndexInfo>; /** *

Stream settings on the table when the backup was created.

*/ StreamDescription?: _UnmarshalledStreamSpecification; /** *

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

*/ TimeToLiveDescription?: _UnmarshalledTimeToLiveDescription; /** *

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

*/ SSEDescription?: _UnmarshalledSSEDescription; }