/** *

Contains details for the restore.

*/ export interface _RestoreSummary { /** *

ARN of the backup from which the table was restored.

*/ SourceBackupArn?: string; /** *

ARN of the source table of the backup that is being restored.

*/ SourceTableArn?: string; /** *

Point in time or source backup time.

*/ RestoreDateTime: Date | string | number; /** *

Indicates if a restore is in progress or not.

*/ RestoreInProgress: boolean; } export interface _UnmarshalledRestoreSummary extends _RestoreSummary { /** *

Point in time or source backup time.

*/ RestoreDateTime: Date; }