/** *

Describes a virtual tape.

*/ export interface _TapeInfo { /** *

The Amazon Resource Name (ARN) of a virtual tape.

*/ TapeARN?: string; /** *

The barcode that identifies a specific virtual tape.

*/ TapeBarcode?: string; /** *

The size, in bytes, of a virtual tape.

*/ TapeSizeInBytes?: number; /** *

The status of the tape.

*/ TapeStatus?: string; /** *

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

*/ GatewayARN?: string; /** *

The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the S3 storage class that is associated with the pool. When you use your backup application to eject the tape, the tape is archived directly into the storage class (Glacier or Deep Archive) that corresponds to the pool.

Valid values: "GLACIER", "DEEP_ARCHIVE"

*/ PoolId?: string; } export declare type _UnmarshalledTapeInfo = _TapeInfo;