/** *

Represents a virtual tape that is archived in the virtual tape shelf (VTS).

*/ export interface _TapeArchive { /** *

The Amazon Resource Name (ARN) of an archived virtual tape.

*/ TapeARN?: string; /** *

The barcode that identifies the archived virtual tape.

*/ TapeBarcode?: string; /** *

The date the virtual tape was created.

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

The size, in bytes, of the archived virtual tape.

*/ TapeSizeInBytes?: number; /** *

The time that the archiving of the virtual tape was completed.

The default time stamp format is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.

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

The Amazon Resource Name (ARN) of the tape gateway that the virtual tape is being retrieved to.

The virtual tape is retrieved from the virtual tape shelf (VTS).

*/ RetrievedTo?: string; /** *

The current state of the archived virtual tape.

*/ TapeStatus?: string; /** *

The size, in bytes, of data stored on the virtual tape.

This value is not available for tapes created prior to May 13, 2015.

*/ TapeUsedInBytes?: number; /** *

The Amazon Resource Name (ARN) of the AWS KMS key used for Amazon S3 server side encryption. This value can only be set when KMSEncrypted is true. Optional.

*/ KMSKey?: string; /** *

The ID of the pool that was used to archive the tape. The tapes in this pool are archived in the S3 storage class that is associated with the pool.

Valid values: "GLACIER", "DEEP_ARCHIVE"

*/ PoolId?: string; } export interface _UnmarshalledTapeArchive extends _TapeArchive { /** *

The date the virtual tape was created.

*/ TapeCreatedDate?: Date; /** *

The time that the archiving of the virtual tape was completed.

The default time stamp format is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.

*/ CompletionTime?: Date; }