/** *

The description of the point in time settings applied to the table.

*/ export interface _PointInTimeRecoveryDescription { /** *

The current state of point in time recovery:

*/ PointInTimeRecoveryStatus?: 'ENABLED' | 'DISABLED' | string; /** *

Specifies the earliest point in time you can restore your table to. It You can restore your table to any point in time during the last 35 days.

*/ EarliestRestorableDateTime?: Date | string | number; /** *

LatestRestorableDateTime is typically 5 minutes before the current time.

*/ LatestRestorableDateTime?: Date | string | number; } export interface _UnmarshalledPointInTimeRecoveryDescription extends _PointInTimeRecoveryDescription { /** *

Specifies the earliest point in time you can restore your table to. It You can restore your table to any point in time during the last 35 days.

*/ EarliestRestorableDateTime?: Date; /** *

LatestRestorableDateTime is typically 5 minutes before the current time.

*/ LatestRestorableDateTime?: Date; }