/** *
Describes a recovery point.
*/ export interface _TapeRecoveryPointInfo { /** *The Amazon Resource Name (ARN) of the virtual tape.
*/ TapeARN?: string; /** *The time when the point-in-time view of the virtual tape was replicated for later recovery.
The default time stamp format of the tape recovery point time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.
*/ TapeRecoveryPointTime?: Date | string | number; /** *The size, in bytes, of the virtual tapes to recover.
*/ TapeSizeInBytes?: number; /** *The status of the virtual tapes.
*/ TapeStatus?: string; } export interface _UnmarshalledTapeRecoveryPointInfo extends _TapeRecoveryPointInfo { /** *The time when the point-in-time view of the virtual tape was replicated for later recovery.
The default time stamp format of the tape recovery point time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.
*/ TapeRecoveryPointTime?: Date; }