import { _PointInTimeRecoveryDescription, _UnmarshalledPointInTimeRecoveryDescription } from './_PointInTimeRecoveryDescription'; /** *
Represents the continuous backups and point in time recovery settings on the table.
*/ export interface _ContinuousBackupsDescription { /** * ContinuousBackupsStatus can be one of the following states: ENABLED, DISABLED
The description of the point in time recovery settings applied to the table.
*/ PointInTimeRecoveryDescription?: _PointInTimeRecoveryDescription; } export interface _UnmarshalledContinuousBackupsDescription extends _ContinuousBackupsDescription { /** *The description of the point in time recovery settings applied to the table.
*/ PointInTimeRecoveryDescription?: _UnmarshalledPointInTimeRecoveryDescription; }