Describe Tape Recovery Points
storagegateway_describe_tape_recovery_points | R Documentation |
Returns a list of virtual tape recovery points that are available for the specified tape gateway¶
Description¶
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.
Usage¶
Arguments¶
GatewayARN
[required]
Marker
An opaque string that indicates the position at which to begin describing the virtual tape recovery points.
Limit
Specifies that the number of virtual tape recovery points that are described be limited to the specified number.
Value¶
A list with the following syntax:
list(
GatewayARN = "string",
TapeRecoveryPointInfos = list(
list(
TapeARN = "string",
TapeRecoveryPointTime = as.POSIXct(
"2015-01-01"
),
TapeSizeInBytes = 123,
TapeStatus = "string"
)
),
Marker = "string"
)