Skip to main content

tape_recovery_points

Creates, updates, deletes, gets or lists a tape_recovery_points resource.

Overview

Nametape_recovery_points
TypeResource
Idaws.storagegateway.tape_recovery_points

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
tape_arnstringThe Amazon Resource Name (ARN) of the virtual tape. (pattern: <code>arn:(aws(|-cn|-us-gov|-iso[A-Za-z0-9_-]*|-eusc)):storagegateway:[a-z-0-9]+:[0-9]+:tape/[0-9A-Z]{5,16}$</code>)
tape_recovery_point_timestring (date-time)The time when the point-in-time view of the virtual tape was replicated for later recovery. The default timestamp format of the tape recovery point time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.
tape_size_in_bytesinteger (int64)The size, in bytes, of the virtual tapes to recover.
tape_statusstringThe status of the virtual tapes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_tape_recovery_pointsselectregionReturns a list of virtual tape recovery points that are available for the specified tape gateway. A recovery point is a point-in-time view of a virtual tape at which all the data on the virtual tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway. This operation is only supported in the tape gateway type.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of virtual tape recovery points that are available for the specified tape gateway. A recovery point is a point-in-time view of a virtual tape at which all the data on the virtual tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway. This operation is only supported in the tape gateway type.

SELECT
tape_arn,
tape_recovery_point_time,
tape_size_in_bytes,
tape_status
FROM aws.storagegateway.tape_recovery_points
WHERE region = '{{ region }}' -- required
;