tape_recovery_points
Creates, updates, deletes, gets or lists a tape_recovery_points resource.
Overview
| Name | tape_recovery_points |
| Type | Resource |
| Id | aws.storagegateway.tape_recovery_points |
Fields
The following fields are returned by SELECT queries:
- describe_tape_recovery_points
| Name | Datatype | Description |
|---|---|---|
tape_arn | string | The 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_time | string (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_bytes | integer (int64) | The size, in bytes, of the virtual tapes to recover. |
tape_status | string | The status of the virtual tapes. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_tape_recovery_points | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_tape_recovery_points
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
;