paws.storage (version 0.1.0)

storagegateway_describe_tape_archives: Returns a description of specified virtual tapes in the virtual tape shelf (VTS)

Description

Returns a description of specified virtual tapes in the virtual tape shelf (VTS). This operation is only supported in the tape gateway type.

Usage

storagegateway_describe_tape_archives(TapeARNs, Marker, Limit)

Arguments

TapeARNs

Specifies one or more unique Amazon Resource Names (ARNs) that represent the virtual tapes you want to describe.

Marker

An opaque string that indicates the position at which to begin describing virtual tapes.

Limit

Specifies that the number of virtual tapes descried be limited to the specified number.

Request syntax

svc$describe_tape_archives(
  TapeARNs = list(
    "string"
  ),
  Marker = "string",
  Limit = 123
)

Details

If a specific TapeARN is not specified, AWS Storage Gateway returns a description of all virtual tapes found in the VTS associated with your account.

Examples

Run this code
# NOT RUN {
# Returns a description of specified virtual tapes in the virtual tape
# shelf (VTS).
# }
# NOT RUN {
svc$describe_tape_archives(
  Limit = 123L,
  Marker = "1",
  TapeARNs = list(
    "arn:aws:storagegateway:us-east-1:999999999999:tape/AM08A1AD",
    "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab