paws.storage (version 0.1.0)

storagegateway_describe_tape_recovery_points: 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.

Usage

storagegateway_describe_tape_recovery_points(GatewayARN, Marker, Limit)

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.

Request syntax

svc$describe_tape_recovery_points(
  GatewayARN = "string",
  Marker = "string",
  Limit = 123
)

Details

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.

Examples

Run this code
# NOT RUN {
# Returns a list of virtual tape recovery points that are available for
# the specified gateway-VTL.
# }
# NOT RUN {
svc$describe_tape_recovery_points(
  GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
  Limit = 1L,
  Marker = "1"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace